Re: My ISP doesn't relay my e-mail's
"clemens fischer" <[email protected]> 5 Jun 2003 12:22:27 +0200
| Newsgroups | gmane.mail.serialmail |
|---|---|
| Message-ID | <[email protected]> |
Frank Tegtmeyer <[email protected]>: > #!/bin/sh > echo 'go' > /var/qmail/sendtrigger > > This script does nothing besides writing to the pipe. > > Now you can use the sendnow command to trigger the sending of mail. note that it will most propably block when there's no reader on the other side of the pipe. you _could_ add an `&' at the end of the line with the little risk of races in edge cases that might not even be of interest. like running an uneven number of sendtrigger writers and readers causing extra runs of the serialmail? clemens