[PHP] Sendmail question

2008-03-14 Thread nihilism machine
str); //$mail->attachment($fileName); $mail->send(); Where link = a number. the email that i get is: So the email should be a link to: http://www.mysite.com/permalink.php?ID=120 but instead links to: http://www.mysite.com/permalink.php?ID%120 Here is the php sendmail library =

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-21 Thread dan1
On Fri, April 20, 2007 10:27 am, dan1 wrote: I would simply like the script to be executed, when passed as a symlink as argument, instead of a hardlink. The problem is that when I specify the script to be executed (ecardbounce.php) as being a symlink, in the /etc/aliases like this: ecard-bounce:

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-20 Thread Richard Lynch
On Fri, April 20, 2007 10:27 am, dan1 wrote: > I would simply like the script to be executed, when passed as a > symlink as > argument, instead of a hardlink. > The problem is that when I specify the script to be executed > (ecardbounce.php) as being a symlink, in the /etc/aliases like this: > ecar

RE: [PHP] sendmail loop

2007-04-20 Thread WeberSites LTD
Would something like this help? http://www.weberdev.com/get_example-4616.html -Original Message- From: John Pillion [mailto:[EMAIL PROTECTED] Sent: Saturday, April 14, 2007 12:54 AM To: php-general@lists.php.net Subject: [PHP] sendmail loop I have a sendmail script that loops through

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-20 Thread dan1
However, if I put a hardlink instead of the symlink, all works fine! The permissions of the symlink and the file linekd are all 777. Has anyone already had this problem before, or would anyone have an idea of the cause? smrsh itself may disallow symlinks. Wouldn't surprise me. Why not just us

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-19 Thread Richard Lynch
On Thu, April 19, 2007 1:33 pm, dan1 wrote: > This is a poor place to find an answer, because the one thing that > stands out is that this is a problem with php, not Sendmail, and this > is > a Sendmail newsgroup not a php newsgroup. Your dangerously outdated > version of php is running and emitt

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-19 Thread Richard Lynch
On Thu, April 19, 2007 1:23 pm, dan1 wrote: >>> However, if I put a hardlink instead of the symlink, all works >>> fine! >>> The permissions of the symlink and the file linekd are all 777. >>> >>> Has anyone already had this problem before, or would anyone have an >>> idea of >>> the cause? >> >> s

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-19 Thread dan1
smrsh itself may disallow symlinks. Wouldn't surprise me. Why not just use #!/usr/bin/php -q at the top of your PHP script? Something else to my previous answer. Here is the answer of the sendmail guys. Maybe they are still right? Would PHP have a problem to handle symlinked input files? I ha

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-19 Thread dan1
However, if I put a hardlink instead of the symlink, all works fine! The permissions of the symlink and the file linekd are all 777. Has anyone already had this problem before, or would anyone have an idea of the cause? smrsh itself may disallow symlinks. Wouldn't surprise me. Why not just us

Re: [PHP] sendmail smrsh symlinks not working against php scripts

2007-04-18 Thread Richard Lynch
On Wed, April 18, 2007 11:20 am, dan1 wrote: > I am trying to forward the e-mails received to one address towards a > php > script, under CentOS 4 (RHEL). > I am trying all I can but nothing does. > > I have edited my /etc/aliases file and added this line. > ecard-bounce: "|/usr/bin/php /etc/smrsh/

[PHP] sendmail smrsh symlinks not working against php scripts

2007-04-18 Thread dan1
Hello. I am trying to forward the e-mails received to one address towards a php script, under CentOS 4 (RHEL). I am trying all I can but nothing does. I have edited my /etc/aliases file and added this line. ecard-bounce: "|/usr/bin/php /etc/smrsh/ecardbounce.php" Then, of course I do a 'newalias

Re: [PHP] sendmail loop

2007-04-14 Thread tedd
At 4:54 PM -0600 4/13/07, John Pillion wrote: I have a sendmail script that loops through an array of email addresses. the problem is, the list can sometimes be fairly long, and the page does not finish loading until the loop has completed. Currently, I have the majority of the page loading, inc

Re: [PHP] sendmail loop

2007-04-13 Thread Tijnema !
On 4/13/07, John Pillion <[EMAIL PROTECTED]> wrote: I have a sendmail script that loops through an array of email addresses. the problem is, the list can sometimes be fairly long, and the page does not finish loading until the loop has completed. Currently, I have the majority of the page loadin

[PHP] sendmail loop

2007-04-13 Thread John Pillion
I have a sendmail script that loops through an array of email addresses. the problem is, the list can sometimes be fairly long, and the page does not finish loading until the loop has completed. Currently, I have the majority of the page loading, including text that says "messages sending, please

[PHP] PHP sendmail proxy (using xinetd)

2006-11-26 Thread Kelly Jones
g something wrong with buffering or flushing. I made both STDIN and the socket connection (to port 26, where sendmail's running for real) nonblocking, since it's hardish to tell which one's going to "speak" next. Is there any generic proxy code I could use? An existing PH

RE: [PHP] Sendmail issue

2006-03-02 Thread t20040727 . 1430
> > -Original Message- > > From: Dave Goodchild [mailto:[EMAIL PROTECTED] > > Sent: Thursday, March 02, 2006 1:07 PM > > To: php-general@lists.php.net > > Subject: [PHP] Sendmail issue > > > > > > Hi all, I am trying to trigger a php scrip

Re: [PHP] Sendmail issue

2006-03-02 Thread John Nichel
Dave Goodchild wrote: Hi all, I am trying to trigger a php script by sending an email to it. The script commences with #!/usr/local/bin/php to run as a general cgi, and then proceeds to access the email by opening php://stdin. I get all that. However, I am editing the /etc/aliases file to crea

Re: [PHP] Sendmail issue

2006-03-02 Thread Stut
Dave Goodchild wrote: However, I am editing the /etc/aliases file to create an email alias for the script by inserting the following line: agecon "/|/home/agecon/dm/ac_incomingphp" Shouldn't this read... agecon: "| /home/agecon/dm/ac_incomingphp" I'm not an expert at this stuff, but tha

[PHP] Sendmail issue

2006-03-02 Thread Dave Goodchild
Hi all, I am trying to trigger a php script by sending an email to it. The script commences with #!/usr/local/bin/php to run as a general cgi, and then proceeds to access the email by opening php://stdin. I get all that. However, I am editing the /etc/aliases file to create an email alias for th

Re: [PHP] sendmail crash

2005-01-21 Thread Michiel van der Blonk
il you are sending? > > > > > > Or merely a demonstrative sample? > > > > > > Cuz, like, if the email you are REALLY sending is *HUGE* then I'd not > be > > > surprised by the messages above... > > > > > > > Richard, wha

Re: [PHP] sendmail crash

2005-01-14 Thread Michiel van der Blonk
u consider huge. I mean people (read: some of my > idiot co-worker) happily send 10Meg attachments via sendmail all day > long (okay so its not via PHP, but I sometimes use the phpMailer script > to send emails using PHP/sendmail and I have successfully done so with > 10+ Megs of files a

Re: [PHP] sendmail crash

2005-01-12 Thread Jochem Maas
Richard, what do you consider huge. I mean people (read: some of my idiot co-worker) happily send 10Meg attachments via sendmail all day long (okay so its not via PHP, but I sometimes use the phpMailer script to send emails using PHP/sendmail and I have successfully done so with 10+ Megs of fil

Re: [PHP] sendmail crash

2005-01-12 Thread Richard Lynch
Michiel van der Blonk wrote: > I am having a problem with sendmail. It gives me a segfault when I use the > Mail and Mail_Mime package right when I call sendmail. > > I am using the following params > Array > ( > [host] => localhost > [port] => 25 > [auth] => 1 >

[PHP] sendmail crash

2005-01-12 Thread Michiel van der Blonk
Hi I am having a problem with sendmail. It gives me a segfault when I use the Mail and Mail_Mime package right when I call sendmail. I am using the following params Array ( [host] => localhost [port] => 25 [auth] => 1 [username] => account [password

Re: [PHP] Sendmail Return-Path

2004-07-27 Thread Enda Nagle - Lists
Hi Justin, I just tried this code: $headers .= "MIME-Version: 1.0\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\n"; $headers .= "From: Webstore <[EMAIL PROTECTED]>\n"; $headers .= "To: $email_address\n"; $headers .= "Bcc: [EMAIL PROTECTED]"; $headers .= "X-Priority: 1\n"; $headers

Re: [PHP] Sendmail Return-Path

2004-07-27 Thread Curt Zirzow
* Thus wrote Enda Nagle - Lists: > Hi Guys, > > I¹m using PHP¹s mail() function on several sites, but have difficulty > sometimes with the mails being tagged as SPAM. > > I want to have the Return-Path set to the site admin, but can¹t see where to > do this. > > I know that it can be done at ser

Re: [PHP] Sendmail Return-Path

2004-07-27 Thread Justin Patrin
On Tue, 27 Jul 2004 22:07:52 +0100, Enda Nagle - Lists <[EMAIL PROTECTED]> wrote: > Hi Guys, > > I¹m using PHP¹s mail() function on several sites, but have difficulty > sometimes with the mails being tagged as SPAM. > > I want to have the Return-Path set to the site admin, but can¹t see where to

[PHP] Sendmail Return-Path

2004-07-27 Thread Enda Nagle - Lists
Hi Guys, I¹m using PHP¹s mail() function on several sites, but have difficulty sometimes with the mails being tagged as SPAM. I want to have the Return-Path set to the site admin, but can¹t see where to do this. I know that it can be done at server root level but I can¹t really do that as its a

[PHP] Sendmail wrapper

2004-02-02 Thread Federico Petronio
Hi all... I have a chrooted Apache/PHP on Solaris 8 working fine except for one PHP function, mail(). I read that in Unix environments there is not possible to make PHP use a remote SMTP and it needs to find a sendmail executable un the path. Since including Postfix in the chrooted env. does no

Re: [PHP] sendmail vs smpt

2003-12-02 Thread David T-G
Pablo -- ...and then Pablo Gosse said... % % Hi all. I'm curious as to the performance difference between scripts % that use sendmail vs. smtp for their mailing abilities. Using sendmail will almost always be very very much faster because - you're talking to the local machine - you're offl

[PHP] sendmail vs smpt

2003-12-02 Thread Pablo Gosse
Hi all. I'm curious as to the performance difference between scripts that use sendmail vs. smtp for their mailing abilities. I use the following class for delivering emails, http://phpmailer.sourceforge.net , and since I don't have sendmail running on my loc

Re: [PHP] Sendmail Problem

2003-06-15 Thread Don Read
On 10-Jun-2003 Uma Shankari T. wrote: > > Hello, > > I am having some problem in sendmail using this code. > > $MP = "/usr/sbin/sendmail -t -f [EMAIL PROTECTED]"; > > by main server id name..because of this outside mails are bouncing back.. > > Can any one pls tell me where is the prob

[PHP] Sendmail Problem

2003-06-09 Thread Uma Shankari T.
Hello, I am having some problem in sendmail using this code. $MP = "/usr/sbin/sendmail -t -f [EMAIL PROTECTED]"; i am running this program in one of the server not in the main server.. actually mail will go from this server to mainserver which will deliver the mails outside..but using th

Re: [PHP] Sendmail function

2003-01-25 Thread Chris Hewitt
Christian Ista wrote: Hello, A friend would like to know how to check on the server (dedicated) if the function sendmail is enable or not, how ? if not activated how activate ? Thanks, If I understand your question correctly (and I may not): Assuming RedHat linux, then as root "which sendma

[PHP] Sendmail function

2003-01-25 Thread Christian Ista
Hello, A friend would like to know how to check on the server (dedicated) if the function sendmail is enable or not, how ? if not activated how activate ? Thanks, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: php/sendmail/apache/linux...

2003-01-24 Thread Bruce Douglas
TED] [mailto:[EMAIL PROTECTED]]On Behalf Of Brian Schmidt Sent: Friday, January 24, 2003 6:04 PM To: [EMAIL PROTECTED] Subject: RE: php/sendmail/apache/linux... On Fri, 24 Jan 2003, Bruce Douglas wrote: > However, as I stated, I'm fairly sure that the Sendmail app is working given >

[PHP] php/sendmail/apache/linux...

2003-01-24 Thread Bruce Douglas
hey... I'm sure the question has been answered a 1000 times!!! I'm trying to create a simple app to send email via PHP, using the "mail" function. I'm using RedHat(Linux 8.0 , Sendmail), PHP(4.2.2), Apache (2.0.40). I'm using the following piece of code:

RE: [PHP] PHP sendmail configuration

2003-01-07 Thread Petre Agenbag
config file > > > -Original Message- > > From: Richard Baskett [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, 7 January 2003 10:49 AM > > To: PHP General > > Subject: [PHP] PHP sendmail configuration > > > > > > Ok I know it's off topic, bu

RE: [PHP] PHP sendmail configuration

2003-01-06 Thread Peter Houchin
richard check your php.ini & the mail stuff in there .. it's most likely using the address either there or ur web server config file > -Original Message- > From: Richard Baskett [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 7 January 2003 10:49 AM > To: PHP General

[PHP] PHP sendmail configuration

2003-01-06 Thread Richard Baskett
Ok I know it's off topic, but I've been working on this for over 5 hours now and I almost have it configured, but something is definitely wrong! Basically I can send email using sendmail by this command: echo "Just a test" | mail -s "test" [EMAIL PROTECTED] Now [EMAIL PROTECTED] receives the emai

Re: [PHP] Sendmail Security

2002-12-28 Thread Timothy Hitchens (HiTCHO)
Regardless if mail() takes precautions you should also check input prior to trusting it. Note: If mail does or doesn't if it changes in the future you are covered if you always check. I would suggest a simple addslashes and the (shell/sendmail) will be fine OR better still do an array with a ca

[PHP] Sendmail Security

2002-12-28 Thread Beth Gore
Hi, If I'm taking an URL as user input from in a form, and then emailing that URL back to them as part of a larger message, how do I ensure that no-one sends anything strange to run shell commands through sendmail? Could anyone confirm that mail() or even sendmail does take precautions against

RE: [PHP] Sendmail

2002-12-10 Thread Peter Houchin
check out sendmail.org > -Original Message- > From: Kris [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, 11 December 2002 6:03 PM > To: PHP List > Subject: [PHP] Sendmail > > > Hey Guys > > I know this is off subject but you people seem to be the only

[PHP] Sendmail

2002-12-10 Thread Kris
Hey Guys I know this is off subject but you people seem to be the only people on the net that know anything :) I'm running Solaris 8 and the version of sendmail that comes with that. I was sending a batch of emails before with sendmail. I got an error message: Sendmail [5899]: gBB1Eov05899: SYSE

[PHP] Sendmail

2002-12-10 Thread Kris
Hey Guys I know this is off subject but you people seem to be the only people on the net that know anything :) I'm running Solaris 8 and the version of sendmail that comes with that. I was sending a batch of emails before with sendmail. I got an error message: Sendmail [5899]: gBB1Eov05899: SYSE

[PHP] sendmail problem!

2002-11-27 Thread Siamak
hi I use PEAR to send mails to my users through "sendmail", my mails sometimes are delivered immediately, sometimes after some minutes and sometimes after some hours and sometimes never! I tried to identify the cause but I wasn't successful, is there someone out there who can help me? I want to sen

[PHP] sendmail problem

2002-11-14 Thread Jeff Bluemel
OK - I got the rasmail codes from Zend.com's code library. it is working perfectly for my application except for one problem. the email I am using to send has a .pdf file attachment. I can open that PDF file up directly from the site after it is created, but I cannot open the file attachment up.

[PHP] Sendmail "return-path" from my virtual webhost

2002-07-29 Thread Al
Emails sent from my php scripts, using sendmail, all have a goofy "return-path" variable in the header. Is there a way I can correct this, or does it require a change to the sendmail config file that I can't get to? Thanks... -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] Sendmail doesn't send...

2002-06-26 Thread Jason Wong
On Wednesday 26 June 2002 21:52, Nightshade wrote: > [mail function] > SMTP= localhost ;for win32 > only > sendmail_from = [EMAIL PROTECTED];for win32 only > sendmail_path = /usr/sbin/ ;for unix >

Re: [PHP] Sendmail doesn't send...

2002-06-26 Thread Analysis & Solutions
On Wed, Jun 26, 2002 at 03:52:48PM +0200, Nightshade wrote: > SMTP= localhost ;for win32 > sendmail_from = [EMAIL PROTECTED];for win32 only > sendmail_path = /usr/sbin/ ;for unix Try commenting

Re: [PHP] Sendmail doesn't send...

2002-06-26 Thread Chris Hewitt
I don't have the /usr/sbin in mine (I left it at the default blank) and it works. Can an ordinary user send emails to the destinations you are trying to get to with PHP? If not, then you have a sendmail configuration issue. HTH Chris Nightshade wrote: >[mail function] >SMTP

Re: [PHP] Sendmail doesn't send...

2002-06-26 Thread Nightshade
Adi wrote: > Look in var/log/maillog or similar for errors > > - Original Message - > From: "Nightshade" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, June 26, 2002 3:18 PM > Subject: [PHP] Sendma

Re: [PHP] Sendmail doesn't send...

2002-06-26 Thread adi
Look in var/log/maillog or similar for errors - Original Message - From: "Nightshade" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 26, 2002 3:18 PM Subject: [PHP] Sendmail doesn't send... > Hi, that's my configuration: > I'

[PHP] Sendmail doesn't send...

2002-06-26 Thread Nightshade
Hi, that's my configuration: I've Mdk 8.2 Today I've installed sendmail for 1st time... I tryed to use mail() function, but effectively works only when I send mail to [EMAIL PROTECTED] no mails go to the other local user, and specially to external user: i.e. mail("[EMAIL PROTECTED]",$subj,$msg");

Re: [PHP] sendmail return-path (not 4 newbies)

2002-05-03 Thread Stuart Dallas
On 3 May 2002 at 12:48, Anthony Rodriguez wrote: > PROBLEM > > When a php script uses mail() and sendmail, if the e-mail address is > not right, the e-mail is returned to the envelope sender (the hosting > provider), NOT to the "From", "Reply-To", "Return-Path", or any other > additional headers

[PHP] sendmail return-path (not 4 newbies)

2002-05-03 Thread Anthony Rodriguez
PROBLEM When a php script uses mail() and sendmail, if the e-mail address is not right, the e-mail is returned to the envelope sender (the hosting provider), NOT to the "From", "Reply-To", "Return-Path", or any other additional headers included in mail(). Apparently, this problem is faced by

Re: [PHP] Return path (php/sendmail)

2002-04-12 Thread Analysis & Solutions
Hi Anthony: On Fri, Apr 12, 2002 at 03:27:14AM -0400, Anthony Rodriguez wrote: > > My Web hosting provider runs php (4.1.1) / sendmail (8.10.2) / apache > (1.3.20) / linux red hat (6.2) and I don't get bounced e-mails. Put a from line in the additional headers argument: mail($To, $Subjec

[PHP] Return path (php/sendmail)

2002-04-12 Thread Anthony Rodriguez
Does "Reply-To" works for you? My Web hosting provider runs php (4.1.1) / sendmail (8.10.2) / apache (1.3.20) / linux red hat (6.2) and I don't get bounced e-mails. Any suggestions? Tony ([EMAIL PROTECTED]) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

Re: [PHP] Sendmail 8.10.2 headers

2002-04-08 Thread Jason Wong
On Monday 08 April 2002 15:44, Anthony Rodriguez wrote: > As you may know, headers included in the 4th argument of PHP's mail() are > sent to the outgoing mail server. > > What header(s) can I send to sendmail 8.10.2 (running under Linux Redhat > 6.2) in order for invalid e-mails be returned to my

[PHP] Sendmail 8.10.2 headers

2002-04-08 Thread Anthony Rodriguez
As you may know, headers included in the 4th argument of PHP's mail() are sent to the outgoing mail server. What header(s) can I send to sendmail 8.10.2 (running under Linux Redhat 6.2) in order for invalid e-mails be returned to my e-mail address rather than my hosting provider's default addr

[PHP] Sendmail

2002-02-23 Thread Uma Shankari T.
Hello, Can anyone help me in solving this problem.. For sending mail using sendmail i have written the code like this but it is giving some error messages in the From address instead of address $TO=Me; $[EMAIL PROTECTED]; $fd = popen("/usr/sbin/sendmail -t","w"); fputs(

Re: [PHP] Sendmail, I've had enough of it!

2002-02-22 Thread James Taylor
plication (ezmlm > handles the PHP mailing lists). > > goto: http://cr.yp.to/qmail.html > > -Original Message- > From: Anas Mughal [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 22, 2002 1:41 PM > To: Liam MacKenzie; [EMAIL PROTECTED] > Subject: Re: [PHP

RE: [PHP] Sendmail, I've had enough of it!

2002-02-22 Thread Rick Emery
Message- From: Anas Mughal [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 1:41 PM To: Liam MacKenzie; [EMAIL PROTECTED] Subject: Re: [PHP] Sendmail, I've had enough of it! I had suffered a little bit with sendmail myself last week. It took me some reading, and I got it workin

Re: [PHP] Sendmail, I've had enough of it!

2002-02-22 Thread Anas Mughal
I had suffered a little bit with sendmail myself last week. It took me some reading, and I got it working the second day. Here is a useful link: http://www.samag.com/documents/s=1168/sam0002f/0002f.htm Also, check out the book titled "Essential System Administration". That should be all you nee

Re: [PHP] Sendmail and setting From

2002-02-19 Thread Todd Cary
Greg - Many thanks! That is what I am doing now and I was hoping that I could do the same in Linux as I do with the NT server: have a default in a conf file. Todd -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] "It is a worthy thing to fight for one's freedom; it is another s

Re: [PHP] Sendmail and setting From

2002-02-19 Thread Greg Donald
> On careful reading of the php.ini file, I now realize that the settings > for the "From" is for WIN32 *only*. So, as a newbie to the world or > Linux/Unix, I am not sure where I place the setting for the default > "From". I can add it as the fourth argument in the mail() function, but > I woul

Re: [PHP] Sendmail and setting From

2002-02-18 Thread Todd Cary
Greg - On careful reading of the php.ini file, I now realize that the settings for the "From" is for WIN32 *only*. So, as a newbie to the world or Linux/Unix, I am not sure where I place the setting for the default "From". I can add it as the fourth argument in the mail() function, but I would

Re: [PHP] Sendmail and setting From

2002-02-18 Thread Greg Donald
> I have RH 7.2 with Apache and PHP. The mail() function in PHP worked > out of the box!! Fantastic! The setting in the php.ini is being over > written with Apache. > > Where can I change the setting? What setting is being overwritten by apache? the mta setting? On my RH 7.2 box, my php.ini i

[PHP] Sendmail and setting From

2002-02-18 Thread Todd Cary
I have RH 7.2 with Apache and PHP. The mail() function in PHP worked out of the box!! Fantastic! The setting in the php.ini is being over written with Apache. Where can I change the setting? Many thanks... -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] "It is a worthy thi

Re: [PHP] Sendmail, I've had enough of it!

2002-02-18 Thread Liam MacKenzie
y" <[EMAIL PROTECTED]> To: "'Liam MacKenzie'" <[EMAIL PROTECTED]> Sent: Tuesday, February 19, 2002 2:04 AM Subject: RE: [PHP] Sendmail, I've had enough of it! > Liam, > > I, too, am trying to set-up sendmail on my RH 7.0 Linux. I can't e

[PHP] Sendmail, I've had enough of it!

2002-02-18 Thread Liam MacKenzie
ARGH!!! I'm seriously sick of this! I've spent days on end reading documentation, trying settings, seeking help, and it still won't bloody work! So I've taken the ultimate step, and applied the trusty rm -rf command to everything that has to do with sendmail! In other words, sendmail is no

Re: [PHP] Sendmail & PHP

2002-02-17 Thread Liam MacKenzie
- Original Message - From: "-BD-" <[EMAIL PROTECTED]> To: "Liam MacKenzie" <[EMAIL PROTECTED]> Sent: Sunday, February 17, 2002 11:01 PM Subject: Re: [PHP] Sendmail & PHP > it's operationenigma.net, not operationengima.net, isn't it? > c

[PHP] Sendmail & PHP

2002-02-17 Thread Liam MacKenzie
Sorry about this, yet another question about sendmail... I've spent days on this, read stacks of docs and just can not get it to work! It sends some emails... But others it rejects. Please, if you know of any tutorials on how to set this stuff up, please tell me! If you think you may be able t

Re: [PHP] Sendmail

2002-01-28 Thread Jeff Van Campen
>The system have to send mail automatically to the username stored in >mysql table.I am having the details of usermailid,date.By using php script >how do i go about with this To send the mail, use the mail function: http://www.php.net/manual/en/function.mail.php -- PHP General Mailing Lis

[PHP] Sendmail

2002-01-28 Thread Uma Shankari T.
Hello, The system have to send mail automatically to the username stored in mysql table.I am having the details of usermailid,date.By using php script how do i go about with this Regards, Uma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] SendMail Problem

2002-01-20 Thread Gimenez Blanco
Hi to the list, i´m new... well.. i do a Flash SendMail with variables and HTML format. it works.. but i insert variables in the HTML Message code.. and it don´t works... i don´t know why the code is.. Birthday Reminders for August Sugerencias y Comentarios mandado desde la página de T

[PHP] Sendmail entry in PHP.ini

2001-11-03 Thread Michael, Jason
Does anyone know what the correct entry for the php.ini that allows you to to use sendmail in OSX 10.0.4 Server? Thanks, Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list admin

RE: [PHP] PHP/Sendmail interaction : how to get rid of wrong emails

2001-08-28 Thread Jon Farmer
Programmer, Entanet www.enta.net Tel +44 (0)1952 428969 Mob +44 (0)7968 524175 PGP Key available, send blank email to [EMAIL PROTECTED] -Original Message- From: Sebastian Stadtlich [mailto:[EMAIL PROTECTED]] Sent: 28 August 2001 15:26 To: 'Php-General (E-Mail) Subject: AW: [PHP] PHP/Sen

AW: [PHP] PHP/Sendmail interaction : how to get rid of wrong emails

2001-08-28 Thread Sebastian Stadtlich
t; Betreff: RE: [PHP] PHP/Sendmail interaction : how to get rid of wrong > emails > > > Well on submission of the email you could try contacting > their mail server > and pretend to a have a mail for them using SMTP. > > If you get a "recipient ok" or similar me

RE: [PHP] PHP/Sendmail interaction : how to get rid of wrong emails

2001-08-28 Thread Jon Farmer
x27;Php-General (E-Mail) Subject: [PHP] PHP/Sendmail interaction : how to get rid of wrong emails Hi all I'm facing the Problem that lots of my users are too stupid to write their email correct. When i mail them with php a return email is send to me by their mailserver, which results in

[PHP] PHP/Sendmail interaction : how to get rid of wrong emails

2001-08-28 Thread Sebastian Stadtlich
Hi all I'm facing the Problem that lots of my users are too stupid to write their email correct. When i mail them with php a return email is send to me by their mailserver, which results in LOTS of mail for the root account. Can i get sendmail to put the returned emails in a file? so that i can

Re: [PHP] PHP & sendmail

2001-08-24 Thread Yasuo Ohgaki
"Juraj Hasko" <[EMAIL PROTECTED]> wrote in message 007c01c12ca3$c2ae51a0$ec01db0a@HASKO">news:007c01c12ca3$c2ae51a0$ec01db0a@HASKO... > Mail-Gear hasn't sendmail wrapper. > How about nullmailer? It has sendmail wrapper and could send message to any smtp or qmqp servers. http://untroubled.org/nu

RE: [PHP] PHP & sendmail

2001-08-24 Thread Juraj Hasko
Mail-Gear hasn't sendmail wrapper. Juraj >Juraj Hasko wrote: >> >> Hi, >> >> I would like to know if PHP on *nix system can use another >SMTP mailer than sendmail. On WinNT is PHP indipendent on >concrete mail-server. In our company we >> use Symantec's Mail-Gear on Linux (Slackwa

Re: [PHP] PHP & sendmail

2001-08-24 Thread Pavel Jartsev
Juraj Hasko wrote: > > Hi, > > I would like to know if PHP on *nix system can use another SMTP mailer than >sendmail. On WinNT is PHP indipendent on concrete mail-server. In our company we > use Symantec's Mail-Gear on Linux (Slackware) and I'd like to setup PHP use it. Is >it posible ? http:

RE: [PHP] PHP & sendmail

2001-08-24 Thread Jon Haworth
Yup, try qmail: www.qmail.org You need to adjust the setting in your php.ini as well. HTH Jon -Original Message- From: Juraj Hasko [mailto:[EMAIL PROTECTED]] Sent: 24 August 2001 14:19 To: [EMAIL PROTECTED] Subject: [PHP] PHP & sendmail Hi, I would like to know if PHP on

[PHP] PHP & sendmail

2001-08-24 Thread Juraj Hasko
Hi, I would like to know if PHP on *nix system can use another SMTP mailer than sendmail. On WinNT is PHP indipendent on concrete mail-server. In our company we use Symantec's Mail-Gear on Linux (Slackware) and I'd like to setup PHP use it. Is it posible ? Thanks in advance, Juraj Haško

[PHP] sendmail

2001-08-19 Thread BRACK
Hi, I'm on virtual hosting that lets me configure anything with .htaccess file. I was recomended by provider to specify location of sendmail in case I want to use php mail() function I know that I may do it in .htaccess file by adding php_value sendmail_path /usr/sbin/sendmail The qwestion is

Re: [PHP] sendmail administration api?

2001-07-30 Thread Chris Fry
There's one included in Webmin:- http://www.webmin.com/webmin Chris Christopher Cheng wrote: > Does anybody know any Sendmail Administration API for PHP? > > Thanks > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-

[PHP] sendmail administration api?

2001-07-29 Thread Christopher Cheng
Does anybody know any Sendmail Administration API for PHP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] sendmail scripts -which user?

2001-07-18 Thread Greg Robillard
I would like to use the PHP Mail() function. I know that my script that uses it works, because I have used it on another server. But there seems to be a problem with sendmail, and whether I can send email as an anonymous user (noboby). Anyone have any thoughts on this one? Thanks, Greg Robillard

[PHP] Sendmail

2001-03-27 Thread Daniel B I
Yep, I had the same problem yesterday with the mail. Try to just put a semicolon ";" in front of the sendmail path directive :). It worked with mine! It seems that it wants to find the path itself. Daniel BI >Hi , >I'm at a lossI've searched throught the knowledgebase, archives, docs, >etc b

Re: [PHP] Sendmail

2001-03-25 Thread Atet Sugiharto
configuration (I'm new in PHP too..) Thanks for all answer ... regards, Atet >it would help if you showed a snippet of your mail code >- Original Message - >From: "Atet Sugiharto" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Saturday, Marc

Re: [PHP] Sendmail

2001-03-25 Thread Chris Anderson
it would help if you showed a snippet of your mail code - Original Message - From: "Atet Sugiharto" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 24, 2001 1:49 AM Subject: [PHP] Sendmail > Hi , > > I'm at a lossI've sear

[PHP] Sendmail

2001-03-23 Thread Atet Sugiharto
Hi , I'm at a lossI've searched throught the knowledgebase, archives, docs, etc but I can't figure out what's going on. The problem is when using the mail() function nothing gets send and I don't get any error messages either. It's like the message gets eaten by a black hole. I already put

RE: [PHP] sendmail

2001-03-16 Thread Marius Kirschner
March 16, 2001 11:41 AM > To: Marius Kirschner; [EMAIL PROTECTED] > Subject: RE: [PHP] sendmail > > > Do you have the switches for sendmail in your path? > > Our installs have: /usr/sbin/sendmail -t -i for the path information... > > Sincerely, > > Robert T. C

RE: [PHP] sendmail

2001-03-16 Thread Robert Covell
-Original Message- From: Marius Kirschner [mailto:[EMAIL PROTECTED]] Sent: Friday, March 16, 2001 10:43 AM To: [EMAIL PROTECTED] Subject: [PHP] sendmail I'm at a lossI've searched throught the knowledgebase, archives, docs, etc but I can't figure out what's going on. The probl

[PHP] sendmail

2001-03-16 Thread Marius Kirschner
I'm at a lossI've searched throught the knowledgebase, archives, docs, etc but I can't figure out what's going on. The problem is when using the mail() function nothing gets send and I don't get any error messages either. It's like the message gets eaten by a black hole. I'm running PHP4 on

Re: [PHP] Sendmail User ID

2001-01-18 Thread Yurais Fernández Leal
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ok I solved the problem I put a user on the trusted class of the sendmail and added -f otheruser in the php.ini file... thanks everyone -BEGIN PGP SIGNATURE- Version: PGPfreeware 6.5.8 for non-commercial use iQA/AwUBOm

Re: [PHP] Sendmail User ID

2001-01-18 Thread Yurais Fernández Leal
ot;Robert Hough" <[EMAIL PROTECTED]> To: "Yurais Fernandez Leal" <[EMAIL PROTECTED]> Sent: Thursday, January 18, 2001 5:54 PM Subject: Re: [PHP] Sendmail User ID > On Thu, 18 Jan 2001, Yurais Fernandez Leal wrote: > > > But the mails are been sent as nobody@webs

Re: [PHP] Sendmail User ID

2001-01-18 Thread Egan
On Thu, 18 Jan 2001 13:50:56 -0500, Yurais Fernández Leal <[EMAIL PROTECTED]> wrote: >The problem is, yes, I know that in the remote mail client the mail >appears as if sent from [EMAIL PROTECTED], but in the sendmail >connection, for example the Return-Path is set to the UID of the web >server,

  1   2   >