Search found 30 matches

by rchinn
Wed Feb 04, 2009 10:59 am
Forum: General Questions
Topic: Drafts(1) when I have no drafts
Replies: 15
Views: 2556

Drafts(1) when I have no drafts

Sorry, I didn't see which forum this was posted in. Yes, it's in the web client. We can move this to a separate thread if necessary. I logged in as the user and I also see the incorrect message count even after refreshing. It says "Drafts (1)" but the folder is empty. If I hover over the d...
by rchinn
Wed Feb 04, 2009 10:54 am
Forum: General Questions
Topic: Drafts(1) when I have no drafts
Replies: 15
Views: 2556

Drafts(1) when I have no drafts

[QUOTE]known issue. already fixed. please wait for the next cut.[/QUOTE]
One of my users is experiencing this on 5.0.11. Should it be fixed by now? I couldn't find a bug that addresses this issue.
by rchinn
Thu Jan 22, 2009 2:50 pm
Forum: Administrators
Topic: Easy way to search distribution lists?
Replies: 15
Views: 2755

Easy way to search distribution lists?

It should run fine on any Linux OS, really... if you want to PM me your script as is I may be able to see what's wrong. Maybe something's not escaped right? It runs fine on my RHEL5 boxes.
by rchinn
Thu Jan 22, 2009 2:37 pm
Forum: Administrators
Topic: Easy way to search distribution lists?
Replies: 15
Views: 2755

Easy way to search distribution lists?

The Zimbra version shouldn't matter here. Which OS are you running?
by rchinn
Thu Jan 22, 2009 12:10 pm
Forum: Administrators
Topic: Easy way to search distribution lists?
Replies: 15
Views: 2755

Easy way to search distribution lists?

I took this one step further and wrote a script that actively finds distribution list members who do not have an account. There may be a few situations it doesn't catch correctly, but I just used it to clean up a dozen entries left over from migrating to Zimbra on one of our customers' systems. #!/b...
by rchinn
Thu Jan 22, 2009 10:19 am
Forum: Administrators
Topic: Easy way to search distribution lists?
Replies: 15
Views: 2755

Easy way to search distribution lists?

This shell script should do what you're looking for. We have the same problem you do with bounced messages but I never thought to write a script to help with it. This works for me on 5.0.11: #!/bin/bash SEARCHSTRING="user@domain.tld" for list in `zmprov gadl` do results=`zmprov gdl $list |...
by rchinn
Sat Jan 17, 2009 1:37 pm
Forum: Administrators
Topic: [SOLVED] daily zwc access report via mail
Replies: 3
Views: 657

[SOLVED] daily zwc access report via mail

I wrote a simple script that parses yesterday's log file for ZWC access and prints a comma-separated list of users and IP addresses: #!/bin/bash PATH="/usr/bin:/bin" # Find yesterday's log file logfile=`ls -1 /opt/zimbra/log/mailbox.log.*|sort | tail -n 1` # Find NoOpRequest entries in the...
by rchinn
Sat Jan 17, 2009 12:02 pm
Forum: Administrators
Topic: [SOLVED] daily zwc access report via mail
Replies: 3
Views: 657

[SOLVED] daily zwc access report via mail

Access to the web client, IMAP, POP3, etc is logged in /opt/zimbra/log/mailbox.log. You could write a script to parse it every day to see who's active and from where.
by rchinn
Sun Nov 23, 2008 4:19 pm
Forum: Zimlets
Topic: Help needed. Simple Zimlet
Replies: 6
Views: 1382

Help needed. Simple Zimlet

Did anyone figure out how to do this? I'm looking for the exact same thing...
by rchinn
Fri Nov 14, 2008 9:33 am
Forum: Administrators
Topic: Problems restoring a resource
Replies: 0
Views: 236

Problems restoring a resource

I'm running into issues restoring a resource from backup. I want to restore it to a temporary account. I used the following command: zmrestore -a dove@domain.com -ca --prefix restored- -restoreToTime 20081101000000 This created the account "restored-dove@domain.com", but I cannot edit it i...