Restore Zimbra mailbox with zmmailbox connection refused

67

the problem is for the internal DNS the command is trying to connect to other host with append

#/etc/hosts
[ip] domain.com

this problem is solved

Share:
67

Related videos on Youtube

Akira
Author by

Akira

Updated on September 18, 2022

Comments

  • Akira
    Akira almost 2 years

    I am trying to extract the string from the long URL, for example I have a URL like grazie/gifts.html?mkt_tok=eyjpijoiwvrrne9estnprgmyttjabcisinqioijhu0d I only want this part grazie/gifts.html. However, I also have a a URL like this /grazie/new-member-bonus.html and I want the whole thing, which means I want the string starting from /grazie and end as html.

    I have tried to use the regular expression: ^/grazie+.html$, but it always return /grazie.html. I remember that '.' represents any character. I am kinda stuck.

    • Wiktor Stribiżew
      Wiktor Stribiżew about 7 years
      Try ^grazie.*\.html. If lazy quantifier is working, ^grazie.*?\.html will be better.