View Single Post
  #21 (permalink)  
Old 12-22-2005, 01:21 PM
mubley mubley is offline
Active Member
 
Posts: 44
Default

It looks like the script is not getting the mailbox id for this user correctly, so it is backing up the whole index directory and the whole store directory (all mailboxes).
Please do the following:
Code:
/opt/zimbra/bin/mysql
This will put you in an interactive mysql session. Then type the following:
Code:
connect zimbra
This selects the zimbra database. Next, type the following:
Code:
select * from mailbox where comment = 'rwss920@redwingshoes.ca';
This searches the zimbra database for any records whose comment field contains the email address in question. My guess is that this will return "Empty set". Is that correct? When finished with the interactive mysql session, type:
Code:
exit
If the query returned "Empty set", then we'll need to come up with a different way to determine the mailbox ID.

Quote:
Originally Posted by rmvg
32K ./index/7/index/0
36K ./index/7/index
40K ./index/7
8.0K ./index/52/index/0
12K ./index/52/index
16K ./index/52
(snip)
Reply With Quote