Displaying 1 result from an estimated 1 matches for "user_inbox".
2016 Feb 22
2
Setup changes 1.x to 2.x -- custom POP3 account handling required.
...}
ssl = required
ssl_cert = </etc/exim4/exim.crt
ssl_key = </etc/exim4/exim.key
userdb {
driver = passwd
}
[1] This is the content of the original wrapper script:
#!/bin/sh
if [ -f $HOME/.use-mbox-for-pop3s ]; then
export MAIL=mbox:$HOME/mail:INBOX=/var/mail/$USER
export USER_INBOX=/var/mail/$USER
if [ -f $USER_INBOX ]
then
export USER_INBOX_GROUP=$(stat -c %G $USER_INBOX)
if [ $USER_INBOX_GROUP != $USER ]
then
(
date
ls -l $USER_INBOX...