Displaying 3 results from an estimated 3 matches for "user_backup".
Did you mean:
usb_backup
2012 Aug 07
0
how to duplicate users emails to allow deleted recovery?
...om desktop client, wants them recovered from
server, happened several times now
is there a way to have all deletes to go to server trash for potential
recovery ?
off topic: is there a way on iphone to force deletions to server's trash
is there a way to have dovecot duplicate all emails to say
user_backup at dom.tld mail box ?
or should I duplicate emails in postfix ?
using dovecot 2 with lmpt and virtual domains
thanks
--
Voytek
2014 Feb 24
1
realtime backup with LDA?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Sun, 23 Feb 2014, Francesco wrote:
> i was reading the dovecot-lda documentation as i'm using LDA as a
> delivery agent on my current mailserver configuration.
>
> I was curious to know if there are some options for having a message to
> be delivered to a "twin mailbox" upon delivery.
> this twin mailbox would work
2014 Feb 24
2
realtime backup with LDA?
...really necessary.
So Dovecot LDA seems to keep its virtual fingers off the message and
you don't need to redirect all the time and you can get hard links,
if you use the same uid/gid for both users, 100% identical then e.g.:
#!/bin/bash
user=$...
f=/path/to/dir/on/same/mountpoint/as/user/and/user_backup/$$.tmp
cat - > $f
dovecot-lda .... -d ${user} -p $f
rc=$?
if test $rc -gt 0; then
rm -f $f
exit $rc
fi
dovecot-lda .... -d ${user}_backup -p $f
rm -f $f
# ignore errors to prevent re-delivery to user
exit 0
- --
Steffen Kaiser
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linu...