Re: Change sender in php

2015-02-05 Thread Danny
Thanks guys, I used the php.ini suggestion but am in the process of integrating phpmailer. Thanks again for your time Danny

Re: Change sender in php

2015-02-03 Thread Wietse Venema
Marcus Bointon: Checking application/pgp-signature: FAILURE -- Start of PGP signed section. > On 3 Feb 2015, at 17:48, Viktor Dukhovni wrote: > > > > Actually, DO put a space in. Some day you'll write a shell script > > of the form: > > > > /usr/sbin/sendmail -f "$sender" ... > > > > whic

Re: Change sender in php

2015-02-03 Thread Marcus Bointon
On 3 Feb 2015, at 17:48, Viktor Dukhovni wrote: > > Actually, DO put a space in. Some day you'll write a shell script > of the form: > > /usr/sbin/sendmail -f "$sender" ... > > which will work even when the sender address is empty, the non-space > variant will break: > > /usr/sbin

Re: Change sender in php

2015-02-03 Thread Viktor Dukhovni
On Tue, Feb 03, 2015 at 11:53:55AM +0100, Marcus Bointon wrote: > On 3 Feb 2015, at 11:25, Christian R??ner > wrote: > > > > php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f > > foo...@example.org > > Don't put a space between the `-f` and the address, it should be like > `-ffoo..

Re: Change sender in php

2015-02-03 Thread Christian Rößner
> Am 03.02.2015 um 11:53 schrieb Marcus Bointon : > > On 3 Feb 2015, at 11:25, Christian Rößner > wrote: >> >> php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f >> foo...@example.org > > Don't put a space between the `-f` and the address, it should be like > `-ffoo...@example.org

Re: Change sender in php

2015-02-03 Thread Marcus Bointon
On 3 Feb 2015, at 11:25, Christian Rößner wrote: > > php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f > foo...@example.org Don't put a space between the `-f` and the address, it should be like `-ffoo...@example.org`. On 3 Feb 2015, at 11:26, li...@rhsoft.net wrote: > > just don'

Re: Change sender in php

2015-02-03 Thread Christian Rößner
> Am 03.02.2015 um 13:17 schrieb Danny : > > Hi Guys, > > I have postfix setup on a Debian system that manages all my mail. However, > whenever php is sending mail it sends it under user "www-data". I tried > changing > the headers in php but it remains the same. > > Is there someway I can cha

Re: Change sender in php

2015-02-03 Thread li...@rhsoft.net
Am 03.02.2015 um 13:17 schrieb Danny: I have postfix setup on a Debian system that manages all my mail. However, whenever php is sending mail it sends it under user "www-data". I tried changing the headers in php but it remains the same. Is there someway I can change this to a more friendly nam

Re: Change sender in php

2015-02-03 Thread Pintér Tibor
On 2015-02-03 13:17, Danny wrote: Hi Guys, I have postfix setup on a Debian system that manages all my mail. However, whenever php is sending mail it sends it under user "www-data". I tried changing the headers in php but it remains the same. Is there someway I can change this to a more friendl

Change sender in php

2015-02-03 Thread Danny
Hi Guys, I have postfix setup on a Debian system that manages all my mail. However, whenever php is sending mail it sends it under user "www-data". I tried changing the headers in php but it remains the same. Is there someway I can change this to a more friendly name via postfix? It is not a tra