Search found 265 matches

by oetiker
Mon Dec 18, 2023 3:30 pm
Forum: Administrators
Topic: [Solved] zimbra 10 delay_warning_time is set to 0h
Replies: 2
Views: 9554

[Solved] zimbra 10 delay_warning_time is set to 0h

hi Thanks that works ... sadly it is wrong documented in the Zimbra 10 admin documentation. https://zimbra.github.io/documentation/zimbra-10/adminguide.html Configure the time after which the sender receives the message headers of email that is still queued. zmlocalconfig -c postfix_delay_warning_ti...
by oetiker
Wed Dec 13, 2023 12:33 pm
Forum: Administrators
Topic: Huge folder size "ldap" inside opt directory in Zimbra
Replies: 9
Views: 31012

Re: Huge folder size "ldap" inside opt directory in Zimbra

If you copy a space file you have to use social copy options to present
filling the holes with zeros ...

Code: Select all

cp --sparse=always 
rsync --sparse
by oetiker
Wed Dec 13, 2023 9:58 am
Forum: Administrators
Topic: [Solved] zimbra 10 delay_warning_time is set to 0h
Replies: 2
Views: 9554

[Solved] zimbra 10 delay_warning_time is set to 0h

Hi

I just noticed, that in my Zimbra 10

Code: Select all

postfix_delay_warning_time
is not configured means set to 0

Code: Select all

$ postconf | grep delay_warning
delay_warning_time = 0h
setting:

Code: Select all

zmlocalconfig -e postfix_delay_warning_time=4h
Does not help ... I just submitted a bug report ...
by oetiker
Mon Dec 11, 2023 7:44 am
Forum: Administrators
Topic: zmmboxmove ends with an error
Replies: 0
Views: 64623

zmmboxmove ends with an error

Hi I have moved many accounts without a problem. But I have a big account that ends the move with a error, it must be at the very end ... if I check the mailbox store it contains the same amount of emails on the new server. 2023-12-11 05:04:38,541 WARN [MailboxMove-box@example.com:zimbra.server.ch.c...
by oetiker
Thu Dec 07, 2023 7:22 am
Forum: Administrators
Topic: zmboxmove ends with auth credentials have expired
Replies: 2
Views: 10633

[solved] Re: zmboxmove ends with auth credentials have expired

Code: Select all

zmprov ga admin@example.com zimbraAdminAuthTokenLifetime
# name admin@example.com
zimbraAdminAuthTokenLifetime: 12h
by oetiker
Thu Dec 07, 2023 6:34 am
Forum: Administrators
Topic: zmboxmove ends with auth credentials have expired
Replies: 2
Views: 10633

zmboxmove ends with auth credentials have expired

Hi I'm moving mailboxes from my zimbra 8.8.15 to zimbra 10.0.5 Server with the offical command... the box is quite big and takes a long time to move ... zmmboxmove -a account@example.com -f zimbra8 -t zimra10 --sync Error occurred: auth credentials have expired zmprov -l ga account@example.com zimbr...
by oetiker
Tue Dec 05, 2023 6:53 am
Forum: Administrators
Topic: After moving from Zimbra 8.8.15 to Zimbra 10.0.5 Outlook shows disconnected
Replies: 1
Views: 6332

After moving from Zimbra 8.8.15 to Zimbra 10.0.5 Outlook shows disconnected

Hi I have setup side by side migration with the moving home approach between Zimbra 8 and Zimbra 10. Now I have a Active Sync Outlook Client 2019 that shows disconnected... If I check the connection in outlook the Testes got successful and If I create a new profile it is ok to ... removing the entry...
by oetiker
Fri Nov 10, 2023 7:03 am
Forum: General Questions
Topic: Anyone using zimbra 9 or 10?
Replies: 4
Views: 16346

Re: Anyone using zimbra 9 or 10?

Hi I'm using Zimbra 10 now since about 1 month and had not much to support ... the only big thing is, that Zimbra removed all NG tools ... this had in my environment no impact for the users. Sadly all new stuff from the NG tools is gone.... but I can live without them... The new web client is for my...
by oetiker
Thu Nov 09, 2023 2:28 pm
Forum: Administrators
Topic: How to export all accounts globally to csv files in the CLI mode?
Replies: 2
Views: 2454

Re: How to export all accounts globally to csv files in the CLI mode?

run it as zimbra User

Code: Select all

#!/bin/sh
for i in `zmprov -l gaa`
	do
	echo "export Account $i"
	zmmailbox -z -m $i -t 0 getRestURL "//contacts?fmt=csv" > /tmp/${i}.csv
	done
done
by oetiker
Thu Nov 09, 2023 2:12 pm
Forum: Administrators
Topic: problem with script to move accounts (SOLVED)
Replies: 9
Views: 5831

Re: problem with script to move accounts

#!/bin/bash # Source and destination server details SOURCE_SERVER="server1" DESTINATION_SERVER="server2" # List of mailboxes to move MAILBOXES=("mail1@mail.com" "mail2@mail.com" "mail3@mail.com") # Loop through each mailbox and move it for MAILBOX i...