fifo smtproutes Re: Qmail and Large Scale Dynamic Mailings

2001-01-11 Thread David L. Nicol
what if /var/qmail/control/smtproutes was replaced with a fifo that gave a different relay every time it was read? #!/usr/local/bin/perl while(++$count){ unlink '/var/qmail/control/smtproutes'; system 'mkfifo /var/qmail/control/smtproutes'; $c=$count % 5; # or however many

Re: fifo smtproutes Re: Qmail and Large Scale Dynamic Mailings

2001-01-11 Thread Mark Delany
On Thu, Jan 11, 2001 at 03:46:55PM +, David L. Nicol wrote: what if /var/qmail/control/smtproutes was replaced with a fifo that gave a different relay every time it was read? #!/usr/local/bin/perl while(++$count){ unlink '/var/qmail/control/smtproutes'; system 'mkfifo