डिफ़ॉल्ट रूप से, पोस्टफ़िक्सएडमिन में मेलबॉक्स बनाते समय, प्रत्येक मेलबॉक्स के लिए एक फ़ोल्डर बनाया जाता है। पोस्टफिक्सएडमिन के माध्यम से मेलबॉक्स को हटाते समय, केवल उपयोगकर्ता को हटा दिया जाता है, यानी। पहुंच समाप्त हो गई है, लेकिन सभी अक्षरों वाला मेलबॉक्स फ़ोल्डर बना हुआ है। यदि हम समान लॉगिन के साथ एक मेलबॉक्स बनाते हैं, तो डेटा वैसा ही रहेगा जैसे कि हमने मेलबॉक्स को हटाया नहीं था। इस ट्यूटोरियल में, हम मेलबॉक्स फ़ोल्डरों को PostfixAdmin में हटाए जाने पर स्वचालित रूप से हटाए जाने के लिए कॉन्फ़िगर करेंगे।
आप एक तैयार वीपीएस मेल सर्वर भी ऑर्डर कर सकते हैं; इसे कैसे कॉन्फ़िगर किया गया है इसके बारे में अधिक विवरण यहां पाया जा सकता है:
आइए कॉन्फ़िगरेशन फ़ाइल खोलें:
/usr/share/nginx/html/postfixadmin/config.inc.php
$CONF['mailbox_postdeletion_script']='sudo -u vmail /usr/local/bin/postfixadmin-mailbox-postdeletion.sh';
आइए एक स्क्रिप्ट फ़ाइल बनाएं जो मेलबॉक्स फ़ोल्डरों को हटा देगी:
#touch /usr/local/bin/postfixadmin-mailbox-postdeletion.sh
#!/bin/sh
Example script for removing a Maildir from a Courier-IMAP virtual mail
hierarchy.
The script looks at arguments 1 and 2, assuming that they
indicate username and domain, respectively.
The script will not actually delete the maildir. I moves it
to a special directory which may once in a while be cleaned up
by the system administrator.
This script should be run as the user which owns the maildirs. If
the script is actually run by the apache user (e.g. through PHP),
then you could use "sudo" to grant apache the rights to run
this script as the relevant user.
Assume this script has been saved as
/usr/local/bin/postfixadmin-mailbox-postdeletion.sh and has been
made executable. Now, an example /etc/sudoers line:
apache ALL=(courier) NOPASSWD: /usr/local/bin/postfixadmin-mailbox-postdeletion.sh
The line states that the apache user may run the script as the
user "courier" without providing a password.
Change this to where you keep your virtual mail users' maildirs.
basedir=/home/mail
Change this to where you would like deleted maildirs to reside.
trashbase=/var/spool/deleted-maildirs if [ ! -e "$trashbase" ]; then echo "trashbase '$trashbase' does not exist; bailing out."
exit 1
fi if [
echo $1 | fgrep '..'
]; thenecho "First argument contained a double-dot sequence; bailing out." exit 1
fi
if [ `echo $2 | fgrep '..'` ]; thenecho "First argument contained a double-dot sequence; bailing out."
exit 1fi
#subdir=`echo "$1" | sed 's/@.*//'`subdir=`echo "$1"`
maildir="${basedir}/$2/${subdir}" trashdir="${trashbase}/$2/`date +%F_%T`_${subdir}" parent=`dirname "$trashdir"` if [ ! -d "$parent" ]; then if [ -e "$parent" ]; then echo "Strainge - directory '$parent' exists, but is not a directory." echo "Bailing out." exit 1else
mkdir -p "$parent" if [ $? -ne 0 ]; thenecho "mkdir -p '$parent' returned non-zero; bailing out."
exit 1
fi
fi
fi
if [ ! -e "$maildir" ]; then
echo "maildir '$maildir' does not exist; nothing to do."
exit 1
fi
if [ -e "$trashdir" ]; then
echo "trashdir '$trashdir' already exists; bailing out."
exit 1
fi
Move or delete (Move enebled by Default)
mv $maildir $trashdir #rm -rf $maildir
exit $?
आइए हटाए गए मेलबॉक्सों को संग्रहीत करने के लिए एक फ़ोल्डर बनाएं
mkdir /var/spool/deleted-maildirs
इस फ़ोल्डर के लिए, आप सफाई की आवृत्ति को कॉन्फ़िगर कर सकते हैं; यह विकल्प आपको मेलबॉक्स के आकस्मिक विलोपन की स्थिति में या कुछ समय बाद डेटा की आवश्यकता होने पर हानि से बचने की अनुमति देता है।
अब हमें स्क्रिप्ट चलाने के लिए vmail उपयोगकर्ता को अधिकार देने की आवश्यकता है /etc/sudoers
# User privilege specification
root ALL=(ALL:ALL) ALL
www-data ALL=(vmail) NOPASSWD: /usr/local/bin/postfixadmin-mailbox-postdeletion.sh
अब हटाए जाने पर, मेलबॉक्स फ़ोल्डर्स को एक अलग फ़ोल्डर /var/spool/deleted-maildirs में ले जाया जाता है यदि आपको किसी मेलबॉक्स फ़ोल्डर को तुरंत हटाने की आवश्यकता है, तो डिलीट लाइन चालू करें और स्थानांतरण अवधि बंद करें:
mv $maildir $trashdir
rm -rf $maildir
Готово.