Matthew T. O'Connor wrote:
Anyway, I'm trying to find an example of how to setup dbmail-imapd using
xinetd, and haven't been able to find one. Our docs don't seem to
mention it anywhere. Does anyone have an example, or can they tell me
where to find one, or at least give me some guidance on how to do this?
After a little trial and error, I have this working and thought I should
post it to the list in the hope that it helps someone else.
I created this file: /etc/xinet.d/dbmail-imap
The contents of said file are:
# description: xinet.d entry for dbmail-imap
#
service imap
{
socket_type = stream
wait = no
user = root
server = /usr/local/dbmail/sbin/dbmail-imapd
protocol = tcp
server_args = -n
log_on_failure += USERID
disable = no
}
This is now working for me. If anyone has any feedback on different
settings for the above please speak up.
Matt