Re: [PHP] sending email to php script

2001-11-04 Thread David Robley

On Fri,  2 Nov 2001 18:33, Adrian D'Costa wrote:
 On Fri, 2 Nov 2001, David Robley wrote:
 What if we need both version??
   
There's nothing stopping you running both.
  
   How do you compile it for both?
  
   Adrian
 
  To do the cgi compile, use all the configure values you need EXCEPT
  anything apache related. The compile will produce an executable
  called, strangely, php.

 Will it work with apache then?

 Adrian

Um, I don't understand? Presumably you already have the module version of 
PHP running with Apache; all you need the standalone for is to non-web 
based stuff?

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Catalogue: How to tell one sort of cat from another.

-- 
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]




Re: [PHP] sending email to php script

2001-11-02 Thread Chris Allen

I think someone electrified the corridor, Tom said haltingly.

^^

shouldnt that be shockingly?

:p


-- 
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]




Re: [PHP] sending email to php script

2001-11-02 Thread Adrian D'Costa

On Fri, 2 Nov 2001, David Robley wrote:

What if we need both version??
  
   There's nothing stopping you running both.
 
  How do you compile it for both?
 
  Adrian
 
 To do the cgi compile, use all the configure values you need EXCEPT 
 anything apache related. The compile will produce an executable called, 
 strangely, php.

Will it work with apache then?

Adrian


-- 
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]




RE: [PHP] sending email to php script

2001-11-01 Thread Adrian D'Costa

On Thu, 1 Nov 2001, Jason Murray wrote:

   You'll also need to compile php as a standalone, and put as 
   the first line of your php script
   
   #!/path/to/php -q
  
  What if we need both version??
 
 There's nothing stopping you running both.

How do you compile it for both?

Adrian


-- 
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]




Re: [PHP] sending email to php script

2001-11-01 Thread David Robley

On Fri,  2 Nov 2001 15:09, Adrian D'Costa wrote:
 On Thu, 1 Nov 2001, Jason Murray wrote:
You'll also need to compile php as a standalone, and put as
the first line of your php script
   
#!/path/to/php -q
  
   What if we need both version??
 
  There's nothing stopping you running both.

 How do you compile it for both?

 Adrian

To do the cgi compile, use all the configure values you need EXCEPT 
anything apache related. The compile will produce an executable called, 
strangely, php.

I think there are a few lines in the docs about it somewhere in the 
compile section.
-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   I think someone electrified the corridor, Tom said haltingly.

-- 
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]




Re: [PHP] sending email to php script

2001-10-31 Thread Adrian D'Costa

On Mon, 29 Oct 2001, David Robley wrote:

 On Sat, 27 Oct 2001 03:23, JSheble wrote:
  A while ago an email came through here about how to parse out email
  message from a php script.  The thing that was mostly of interest to me
  is the ability to send an email to a php script, I guess through a
  sendmail alias?  I asked how to accomplish this, and never saw an
  answer come through.  So I'd like to ask again :o)
 
  Does anybody know what would be required or necessary to send an email
  to an address that would run a php script?
 
 You say sendmail, so do it thusly:
 
 Edit /etc/aliases and add a line like
 
 phpmail: | /pathto/your/php/script
 
 and run newaliases to update your alias database.

Actually, I am still trying to figure this out when I get time.  What I
did was:
 
phpmail: | lynx -dump  /pathto/your/php/script

But the problem is nothing appears to be capture in the script.  Or rather
in what format does this mail arrive.  I even tried to write it to a file
but nothing is written.

 
 You'll also need to compile php as a standalone, and put as the first 
 line of your php script
 
 #!/path/to/php -q

What if we need both version??


Adrian


-- 
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]




RE: [PHP] sending email to php script

2001-10-31 Thread Jason Murray

  You'll also need to compile php as a standalone, and put as 
  the first line of your php script
  
  #!/path/to/php -q
 
 What if we need both version??

There's nothing stopping you running both.

J

-- 
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]




Re: [PHP] sending email to php script

2001-10-31 Thread David Robley

On Wed, 31 Oct 2001 22:04, Adrian D'Costa wrote:
 On Mon, 29 Oct 2001, David Robley wrote:
  On Sat, 27 Oct 2001 03:23, JSheble wrote:
   A while ago an email came through here about how to parse out email
   message from a php script.  The thing that was mostly of interest
   to me is the ability to send an email to a php script, I guess
   through a sendmail alias?  I asked how to accomplish this, and
   never saw an answer come through.  So I'd like to ask again :o)
  
   Does anybody know what would be required or necessary to send an
   email to an address that would run a php script?
 
  You say sendmail, so do it thusly:
 
  Edit /etc/aliases and add a line like
 
  phpmail: | /pathto/your/php/script
 
  and run newaliases to update your alias database.

 Actually, I am still trying to figure this out when I get time.  What I
 did was:

 phpmail: | lynx -dump  /pathto/your/php/script

 But the problem is nothing appears to be capture in the script.  Or
 rather in what format does this mail arrive.  I even tried to write it
 to a file but nothing is written.

The pipe feeds the incoming data to the script as standard input - $DEITY 
knows what lynx would do with that, but black holes seem to be the most 
likely destination. Your script needs to be an executable, standalone 
which reads and parses data from stdin and which is the direct recipient 
of info from the pipe.

  You'll also need to compile php as a standalone, and put as the first
  line of your php script
 
  #!/path/to/php -q

 What if we need both version??

As my colleague on the eastern seaboard has noted already, you can have a 
module and a standalone on the same system.

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Catscan: searching for kitty.

-- 
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]




Re: [PHP] sending email to php script

2001-10-28 Thread David Robley

On Sat, 27 Oct 2001 03:23, JSheble wrote:
 A while ago an email came through here about how to parse out email
 message from a php script.  The thing that was mostly of interest to me
 is the ability to send an email to a php script, I guess through a
 sendmail alias?  I asked how to accomplish this, and never saw an
 answer come through.  So I'd like to ask again :o)

 Does anybody know what would be required or necessary to send an email
 to an address that would run a php script?

You say sendmail, so do it thusly:

Edit /etc/aliases and add a line like

phpmail: | /pathto/your/php/script

and run newaliases to update your alias database.

You'll also need to compile php as a standalone, and put as the first 
line of your php script

#!/path/to/php -q

Cheers
-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   He's dead, Jim. Get his ears! - Spock

-- 
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] sending email to php script

2001-10-26 Thread JSheble

A while ago an email came through here about how to parse out email message 
from a php script.  The thing that was mostly of interest to me is the 
ability to send an email to a php script, I guess through a sendmail 
alias?  I asked how to accomplish this, and never saw an answer come 
through.  So I'd like to ask again :o)

Does anybody know what would be required or necessary to send an email to 
an address that would run a php script?


-- 
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]