|
#9
| |||
| |||
| Here's the pop3.sh: Code: #!/bin/sh # This starts qmail-pop3d using tcpserver env - PATH="/var/qmail/bin:/usr/local/bin" \ tcpserver -H -R 0 pop3 \ /var/qmail/bin/qmail-popup _SHOST_.domain.com \ /var/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir & Code: #!/bin/sh echo Starting qmail-smtpd... /usr/local/bin/tcpserver -x /var/vpopmail/etc/tcp.smtp.cdb -u 82 -g 81 0 \ smtp /var/qmail/bin/qmail-smtpd \ 2>&1 | /var/qmail/bin/splogger smtpd & Code: #!/bin/sh
# Using splogger to send the log through syslog.
# Using qmail-local to deliver messages to Maildir format by default
case "$1" in
start)
exec env - PATH="/var/qmail/bin:$PATH" \
qmail-start ./Maildir/ splogger qmail&
/var/qmail/bin/pop3.sh
/var/qmail/bin/smtp.sh
exit 0
;;
stop)
exec killall qmail-send
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
__________________ ----- ----- ----- ----- PowerBook G4 12" w/640M RAM, AirPort Extreme running OS X 10.3.x ----- ----- ----- ----- |
|
#10
| |||
| |||
| . Last edited by Gimpy00Wang; May 15th, 2003 at 01:25 PM. |
|
#11
| |||
| |||
| qmail-smtp relay using username and password?? Quote:
i have been trying this for a long time, but ,,,,,,.........couldn't find ny god solution. thanks Mohit |
![]() |
| Thread Tools | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| deleting old SMTP addresses in Mail? | OrganLeroy | Mac OS X System & Mac Software | 1 | October 2nd, 2003 11:36 PM |
| How to select alternate SMTP in Mail? | OrganLeroy | Mac OS X System & Mac Software | 2 | July 8th, 2003 11:26 PM |
| * SASL smtp auth | Gabriel Camiro | Unix & X11 | 0 | May 8th, 2003 10:39 PM |
| CGI Script and SMTP | Joel Epstein | Mac OS X System & Mac Software | 1 | March 28th, 2002 05:30 PM |
| Help with Mail - SMTP problems | N/A | Apple News, Rumors & Discussion | 3 | October 31st, 2000 07:24 AM |