Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Mark Wieder
Andre- Wednesday, March 3, 2010, 11:26:24 AM, you wrote: > I am on loki as well Remember that Loki's a trickster. However, I'm on Odin and there's no mail here either. -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revol

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Sarah Reichelt
> Did anyone here is able to send email using sendmail in On-Rev, my code that > I use everywhere is not working anymore, somehow it can't open the sendmail > process. > > function sendMail pFrom, pTo, pSubject, pBody > >  switch the platform >  case "Linux" >    put "/usr/sbin/sendmail -t" into mp

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Pierre Sahores
Andre, This way works for me as expected on loki from an addon domain (wrds.com) : get mail(pTo, pSub, pMsg, pFrom) function shellQuote pText return quote & pText & quote end shellQuote function shellEscape pText repeat for each char tChar in "\`!$" & quote

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bob Sneidar
Oh nvm you are sending from an email server local to On-Rev. BOB On Mar 3, 2010, at 11:54 AM, Andre Garzia wrote: > I could make it work with the function from Michael, but only sending email > to my .mac account, sending email to my GMail account doesn't work, the > email never arrives and is

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bob Sneidar
Doesn't gMail require SSL? Could that be the issue? Also, the SSL port for gMail SMTP is not 25 it is 465. http://mail.google.com/support/bin/answer.py?hl=en&answer=13287 Bob On Mar 3, 2010, at 11:54 AM, Andre Garzia wrote: > I could make it work with the function from Michael, but only sendi

Re-4: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread runrev260805
I am also using my script with/on an addon domain. Regards, Matthias Original Message Subject: Re: Re-2: [On-Rev] sending email thru sendmail?! (03-Mrz-2010 20:29) From:Andre Garzia To: runrev260...@m-r-d.de > I am on loki as well > > ARGH! > >

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
I could make it work with the function from Michael, but only sending email to my .mac account, sending email to my GMail account doesn't work, the email never arrives and is not on the spam box. :-/ odd On Wed, Mar 3, 2010 at 4:30 PM, J. Landman Gay wrote: > Andre Garzia wrote: > >> I am on l

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay
Andre Garzia wrote: I am on loki as well ARGH! it is an addon domain... Mine isn't an addon. You could try a test in your main account and see if it works there. That would give some info. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
I am on loki as well ARGH! it is an addon domain... On Wed, Mar 3, 2010 at 4:23 PM, J. Landman Gay wrote: > runrev260...@m-r-d.de wrote: > >> Hi, >> >> i just tried it out, and here it works without problems. Maybe its server >> specific. >> My server is loki. >> > > Me too, I'm on loki. Andre,

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Trevor DeVore
On Mar 3, 2010, at 8:55 AM, Andre Garzia wrote: Did anyone here is able to send email using sendmail in On-Rev, my code that I use everywhere is not working anymore, somehow it can't open the sendmail process. Maybe the function Michael McCreary mentions in this lesson is worth trying. I

Re: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay
runrev260...@m-r-d.de wrote: Hi, i just tried it out, and here it works without problems. Maybe its server specific. My server is loki. Me too, I'm on loki. Andre, what server are you on? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | ht

Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread runrev260805
mp;&wrapQ(pBcc) && "-- -f" && wrapQ(pFrom)) end mail mail pTo,pSub, pMsg, pFrom, pCc, pBcc -- Regards, Matthias Original Message Subject: Re: [On-Rev] sending email thru sendmail?! (03-Mrz-2010 19:19) From:Mark Wieder To: runrev260...@m-r

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay
Andre Garzia wrote: Anyone is able to send mail in On-Rev? Yes, I'm using the same code that Jeff posted. I just tried it again and it is still working. Andre, didn't that code come from you? :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Some one sees something wrong in this code? I've been looking at email code the whole day, I am not distinguishing things anymore. put "/usr/sbin/sendmail -t -oi -f" && quote & pFrom & quote into tCMD write "From:" && pFrom & crlf after tMail write "To:" && pTo & crlf after tMail write "Subjec

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Mark Wieder
Andre- Wednesday, March 3, 2010, 8:05:32 AM, you wrote: > tried to use mail -s from command line, didn't work here... :-/ mail -s used to work and now no longer does. So my PayPal integration is now officially broken. -- -Mark Wieder mwie...@ahsoftware.net ___

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Phil Davis
Hi Andre, A few months ago, Tereza and I created a revweb test for my client to use with his customers. At the end it emails test results automatically from a CGI on the on-rev server. I just now tested it and it works. It's emailing from a CGI, not from irev code, so maybe it won't answer you

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ralf, we're using almost the exact same code... I will patch mine to work like yours. Also, if you have the time, can you try one of your revIgniter email sending routines sending an email to an...@andregarzia.com I tried your code sending to my address and it didn't arrive (not even on spam box)

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Ralf Bitter
Andre, before coding your own SMTP, you could check out and plunder the eMail library of revIgniter, especially the _sendWithSendmail function. Ralf On 03.03.2010, at 17:10, Andre Garzia wrote: > Ralf, > > this is a self contained system to be distributted, can't use revIgniter > because this

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ralf, this is a self contained system to be distributted, can't use revIgniter because this is supposed to integrate into other people works... it is a minimal system. Tried using mail and sendmail... I am almost about to code SMTP on my own, I did it before... damn andre On Wed, Mar 3, 2010 at

Re: [On-Rev] sending email thru sendmail?! -- Heather, Please Read

2010-03-03 Thread Andre Garzia
Tim, thanks for the reply! If sendmail is disabled, it should not appear in cPanel... also mail is not working, so how we're supposed to send those damn emails! AG!!! Andre PS: I WANT LOGS! On Wed, Mar 3, 2010 at 12:56 PM, Tim Selander wrote: > I had the same frustration with sendmail

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
tried to use mail -s from command line, didn't work here... :-/ there's something fishy happening. On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitter wrote: > Hi Andre, > > with revIgniter it works, plus there is > a debugger function. > > Cheers > > Ralf > > > On 03.03.2010, at 16:27, Andre Garzia w

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Ralf Bitter
Hi Andre, with revIgniter it works, plus there is a debugger function. Cheers Ralf On 03.03.2010, at 16:27, Andre Garzia wrote: > Ha! > > Logged thru SSH and tried both mail and sendmail and none works! > > :D > > \o/ > > Doing the happy dance, it is definitely broken or configured so bad

Re: [On-Rev] sending email thru sendmail?! -- Heather, Please Read

2010-03-03 Thread Tim Selander
I had the same frustration with sendmail with my on-rev account and wrote support. Heather promptly wrote back, explaining that because of security problems (I think it was) with sendmail, they have disabled it on on-rev. I pointed out (a little bruskly I'm afraid) that I wasted hours and hou

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ha! Logged thru SSH and tried both mail and sendmail and none works! :D \o/ Doing the happy dance, it is definitely broken or configured so badly that it doesn't work as all the other installations I've found. Anyone is able to send mail in On-Rev? Cheers andre On Wed, Mar 3, 2010 at 12:09 P

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Just tried the mail + shell commands and it doesn't work as well... no error is triggered but the email also never arrives. It would be useful is On-Rev Team would add the sendmail/mail log to the cPanel thing. :-/ can't even see the logs! Argh! Cheers andre On Wed, Mar 3, 2010 at 11:57 AM, An

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Bernard & Jeffrey, thanks for the reply. On On-Rev cPanel there's a information label with the sendmail location, which I used on my script but the thing is not working. I have code for "mail" as well as I used this on mac os x... silly computers never working the way they should, let me try mai

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Jeffrey Massung
I can't remember where I found this code, but I've been using it quite successfully with On-Rev: -- escape shell characters: use this function before passing data to the shell function shellEscape pText repeat for each char tChar in "\`$" & quote replace tChar with "\" & t

Re: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bernard Devlin
On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia wrote: > Aloha Folks, > > Did anyone here is able to send email using sendmail in On-Rev, my code that > I use everywhere is not working anymore, somehow it can't open the sendmail > process. Some linux installations have a CLI mailer called 'mail' ins

[On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Aloha Folks, Did anyone here is able to send email using sendmail in On-Rev, my code that I use everywhere is not working anymore, somehow it can't open the sendmail process. function sendMail pFrom, pTo, pSubject, pBody switch the platform case "Linux" put "/usr/sbin/sendmail -t" into m