Re: [PHP] Sending mail directly to php

2005-04-05 Thread Richard Lynch
On Tue, April 5, 2005 7:43 am, ÞilvinasÐaltys said: > I have to create a script that could parse attachments that come from > another > server by mail. I could use crontab & pear pop to do the job. But maybe > someone knows if it is possible to configure my server in such way that it > could send m

Re: [PHP] Sending mail directly to php

2005-04-05 Thread Michael von Minden
Hi! You could create a shell php script that listens on port 25 and does what eg sendmail does... imho this would not be a good solution. A better solution would be to use procmail to feed the mail to your script after it was accepted by the mailserver. cheers ÞilvinasÐaltys wrote: > I have to

[PHP] Sending mail directly to php

2005-04-05 Thread ÞilvinasÐaltys
Hello, I have to create a script that could parse attachments that come from another server by mail. I could use crontab & pear pop to do the job. But maybe someone knows if it is possible to configure my server in such way that it could send mail attachments directly to my php script. It's a lit