[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

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

2010-03-03 Thread Bernard Devlin
On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com 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

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 \ tChar

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 mail.

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,

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

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

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 badly that

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 ra...@dimensionb.de wrote: Hi Andre, with revIgniter it works, plus there is a debugger function. Cheers Ralf On 03.03.2010, at 16:27, Andre

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 selan...@tkf.att.ne.jpwrote: I had the same

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

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 is

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

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

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 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:pTocrlf after tMail write Subject: pSubject

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-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread runrev260805
] sending email thru sendmail?! (03-Mrz-2010 19:19) From:Mark Wieder mwie...@ahsoftware.net To: runrev260...@m-r-d.de 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

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 |

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.

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 jac...@hyperactivesw.comwrote: 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

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 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 jac...@hyperactivesw.comwrote: Andre

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 an...@andregarzia.com 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 Bob Sneidar
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 jac...@hyperactivesw.comwrote: Andre Garzia wrote: I am on loki as well ARGH

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

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: [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 mprocess    

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

Re: Sending eMail via Rev

2009-07-13 Thread Robert Earp
Thanks Bill. I dug some more and found Chip's altEmailHarness. Knowing the quality of Chip's work, I think a small tweak will add my stuff to his and I'll have a solution. Thanks for another great tool Chip. best, Bob... Date: Sat, 11 Jul 2009 17:48:14 -0700 From: Bill Vlahos

Re: Sending eMail via Rev

2009-07-13 Thread Andre Garzia
Chipp Rocks \o/ I always use altPlugins and friends! excellent coder a recommend! :D On Mon, Jul 13, 2009 at 1:39 PM, Robert Earpbob.e...@ashford.ca wrote: Thanks Bill.  I dug some more and found Chip's altEmailHarness.  Knowing the quality of Chip's work, I think a small tweak will add

Re: Sending eMail via Rev

2009-07-13 Thread George C Brackett
I have also found Sarah's libraries POPlibrary.rev and SMTPlibrary.rev (see http://www.troz.net/Rev/libraries.php) very useful. George On Jul 13, 2009, at 12:05 PM, Andre Garzia wrote: Chipp Rocks \o/ I always use altPlugins and friends! excellent coder a recommend! :D On Mon, Jul 13,

Sending Email with attachment

2009-05-12 Thread Peter Alcibiades
Sorry to reply out of thread -- can't seem find the start of it in Nabble. Anyway, I am finding that sending email with attachments from the shell is more complicated than thought. Quite a bit more. You can use mail, which involves first uuencoding it, then piping it through to mail. Tried

Re: Sending Email with attachment

2009-05-12 Thread Kay C Lan
On Wed, May 13, 2009 at 4:23 AM, Peter Alcibiades palcibiades-fi...@yahoo.co.uk wrote: I am finding that sending email with attachments from the shell is more complicated than thought. Quite a bit more. That's because your honest. Maybe you need to spend some time at the SpammersOfTheWorld

Re: Sending Email with attachment

2009-05-11 Thread Phil Davis
Hi Sarah, Would you be willing to share those scripts? A Rev-generated email with attachment is exactly what I need at the moment. Thanks - Phil Davis Sarah Reichelt wrote: On Mon, Apr 20, 2009 at 9:08 PM, BNig niggem...@uni-wh.de wrote: In /library/scripts/mail scripts/ there is a

Re: Sending Email with attachment

2009-04-20 Thread Kay C Lan
On Sun, Apr 19, 2009 at 8:10 PM, william humphrey shoreag...@gmail.comwrote: I'm on Mac so I guess I'll be using the steam engine... Lucky Go to be better than the AppleScript option: http://developer.apple.com/samplecode/SBSendEmail/index.html#//apple_ref/doc/uid/DTS10004645 HTH [OT]

Re: Sending Email with attachment

2009-04-20 Thread Ian Wood
On 20 Apr 2009, at 10:29, Kay C Lan wrote: Go to be better than the AppleScript option: http://developer.apple.com/samplecode/SBSendEmail/index.html#// apple_ref/doc/uid/DTS10004645 That's for embedding commands in an xcode-built app, as far as I can see. Better to crank up Script Editor

Re: Sending Email with attachment

2009-04-20 Thread BNig
. -- View this message in context: http://www.nabble.com/Re%3A-Sending-Email-with-attachment-tp23117602p23134611.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Sending Email with attachment

2009-04-20 Thread Sarah Reichelt
On Mon, Apr 20, 2009 at 9:08 PM, BNig niggem...@uni-wh.de wrote: In /library/scripts/mail scripts/ there is a nice example 'Create New Message' with the option for an attachment. It should get you started (did not test it though) I have some Rev scripts that use AppleScript Mail to create

Re: Sending Email with attachment

2009-04-20 Thread -= JB =-
I would like an example even though I am not up to that point yet. thanks, -=JB=- On Apr 20, 2009, at 3:58 PM, Sarah Reichelt wrote: On Mon, Apr 20, 2009 at 9:08 PM, BNig niggem...@uni-wh.de wrote: In /library/scripts/mail scripts/ there is a nice example 'Create New Message' with the

Re: Sending Email with attachment

2009-04-19 Thread Peter Alcibiades
/listinfo/use-revolution -- View this message in context: http://www.nabble.com/Re%3A-Sending-Email-with-attachment-tp23117602p23120532.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use

Re: Sending Email with attachment

2009-04-19 Thread Horst
: http://www.nabble.com/Re%3A-Sending-Email-with-attachment-tp23117602p23120589.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

Re: Sending Email with attachment

2009-04-19 Thread william humphrey
-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution -- View this message in context: http://www.nabble.com/Re%3A-Sending-Email-with-attachment-tp23117602p23120589

Re: Sending Email with attachment

2009-04-19 Thread william humphrey
I'm in Mac OS. Since the solutions are different for Mac and Windows maybe that is why RevMail doesn't allow to send mail with attachments. On Sun, Apr 19, 2009 at 1:08 AM, Mark Stuart mfstu...@cox.net wrote: Hi William, What platform are you aiming this feature to work on? If Windows, I

Re: Sending Email with attachment

2009-04-18 Thread william humphrey
Since *Syntax: revMail address[,ccAddress[,mailSubject[,messageBody]]]* does not allow for attaching a file how do you do that? ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Sending Email with attachment

2009-04-18 Thread Mark Stuart
Hi William, What platform are you aiming this feature to work on? If Windows, I have a VBScript that will allow an attachment. It launches the email client to populates all the relevant fields, and the attachment field. Let me know. Regards, Mark Stuart

Re: Sending Email

2009-01-07 Thread william humphrey
Thanks. The launch URL has no docs for using it though I noticed so thanks also for the example script. I wonder if RevMail will ever be fixed to include everything? On Mon, Jan 5, 2009 at 7:46 PM, Sarah Reichelt sarah.reich...@gmail.comwrote: Here's a RunRev script that you can try using

Sending Email

2009-01-05 Thread william humphrey
How do you send BCC with revEmail? In the dictionary I see: revMail address[,ccAddress[,mailSubject[,messageBody]]] with no mention of bccAddress Thanks Bill ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to

Re: Sending Email

2009-01-05 Thread mfstuart
subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution -- View this message in context: http://www.nabble.com/Sending-Email-tp21291061p21300166.html Sent from the Revolution - User mailing list archive at Nabble.com

Re: Sending Email

2009-01-05 Thread Sarah Reichelt
Here's a RunRev script that you can try using revGoURL: --start of script -- look for line wraps in the script on mouseUp --format the url --the subject value should not contain spaces. Therefore you will need to replace spaces in the subject value with %20. put

Sending Email from Apps

2007-08-27 Thread Brian Yennie
Question for anyone on the list which does this sort of thing from their apps: Would anyone use a subscription service for this? I know many list members who already have web hosting plans do this themselves, but how many people would rather pay a small amount for just email sending

Re: Sending Email from Apps

2007-08-27 Thread Mark Smith
Do you mean like http://www.smtp.com/? best, Mark On 27 Aug 2007, at 08:34, Brian Yennie wrote: Question for anyone on the list which does this sort of thing from their apps: Would anyone use a subscription service for this? I know many list members who already have web hosting plans

Re: Sending Email from Apps

2007-08-27 Thread Derek Bump
Brian, Well, for me, I look at it this way: I'm already paying for web hosting. But otherwise I think it's a good idea and you should try it. If it works then you've got something, if it doesn't, work on it and try again. Derek Bump Dreamscape Software http://www.dreamscapesoftware.com

Re: Sending Email from Apps

2007-08-27 Thread Brian Yennie
Yes, although for Rev users, it looks like this would require an SMTP library (as opposed to built-in POST support). Do you know if they offer any kind of form-based interface? I couldn't find anything to that effect. Of course if you are comfortable with SMTP this will work great, but I

Re: Sending Email from Apps

2007-08-27 Thread Brian Yennie
Derek, Thanks - what I'm curious to know is how many people are in your boat (already have web hosting, are comfortable doing it themselves), and how many would like an isolated email service. I probably won't try it unless there is a significant response, but I'm curious either way =).

Re: Sending Email from Apps

2007-08-27 Thread Derek Bump
Brian, As a word of advise, test the waters first before you pass on an idea. I almost passed on releasing JPEGCompress years ago, figuring that no one would use it. Today, JPEGCompress has 45,738 downloads listed on CNET's download.com. Not releasing JPEGCompress would have been my biggest

Re: Sending Email from Apps

2007-08-27 Thread Brian Yennie
Derek, Thanks for the encouragement -- I'll have to weigh it against some other things -- but that's a nice success story with JPEGCompress =). Brian, As a word of advise, test the waters first before you pass on an idea. I almost passed on releasing JPEGCompress years ago, figuring that

Re: Sending Email from Apps

2007-08-27 Thread Mark Smith
Ah, I see what you mean...however, I use Shao Seans smtp library, which I find is as easy as POSTing, and works like a champso I guess I'm not a potential customer, but that doesn't mean it's not a good idea. Best, Mark On 27 Aug 2007, at 20:16, Brian Yennie wrote: Yes, although

Sending email from within an application: Thanks!

2007-07-04 Thread Beynon, Rob
I wanted help in sending an email from within an app, using the University mail server... Thanks to Mark Smith, Andre Garzia and Scott Rossi, all of whom took the time to point me in the right direction. In the end, and guided by their advice, I also found Sarah Reichelt's SMTP library and

About sending email and Mac OS X

2006-08-16 Thread Andre Garzia
Friends, send email from your local machine using mail or sendmail shell command from Mac OS X is not as trivial as it seems. In most cases the email will bounce because your local machine does not sport a fully MX Record qualified domain name. To solve this, I advise people to look into

Re: Sending email via Rev

2006-07-26 Thread Richard Miller
Chipp, Not having any luck with your program either. Like Shao Sean's program, the process opens the channel fine, but fails when sending the message (according to the log). I've tried using two different email server settings that I use successfully in my email program when I am

Re: Sending email via Rev

2006-07-26 Thread Sarah Reichelt
Richard, you could try using my SMTP library instead http://www.troz.net/Rev/libraries/SMTPlibrary.rev.gz Cheers, Sarah Not having any luck with your program either. Like Shao Sean's program, the process opens the channel fine, but fails when sending the message (according to the log). I've

Sending email via Rev

2006-07-25 Thread Richard Miller
suspect the problem is with the way I am creating the message, which looks like this: --- (the message doesn't include these dashes) To: [EMAIL PROTECTED] Subject: rev email test This is a test of sending email via Rev

Re: Sending email via Rev

2006-07-25 Thread Alex Tweedly
: message rejected I suspect the problem is with the way I am creating the message, which looks like this: --- (the message doesn't include these dashes) To: [EMAIL PROTECTED] Subject: rev email test This is a test of sending email via Rev

Re: Sending email via Rev

2006-07-25 Thread Mark Smith
doesn't include these dashes) To: [EMAIL PROTECTED] Subject: rev email test This is a test of sending email via Rev --- I also see a line coming back that says: 354 Start mail input; end with CRLF, CRLF Any ideas what I am doing wrong? SMTP

Sending Email Within Revolution???

2005-05-02 Thread Shawn Rampy
Hello All, Yes, I know about the revMail command, but I don't want to call up my email program to send the email; I want to do this within the Rev app I am developing. Any suggestions? Thanks, Shawn __ Do you Yahoo!? Yahoo! Small

RE: Sending Email Within Revolution???

2005-05-02 Thread MisterX
Mac or PC? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shawn Rampy Sent: Monday, May 02, 2005 16:08 To: use-revolution@lists.runrev.com Subject: Sending Email Within Revolution??? Hello All, Yes, I know about the revMail command

Re: Sending Email Within Revolution???

2005-05-02 Thread Björnke von Gierke
look at this free library: http://www.shaosean.tk/ On May 02 2005, at 16:07, Shawn Rampy wrote: Hello All, Yes, I know about the revMail command, but I don't want to call up my email program to send the email; I want to do this within the Rev app I am developing. Any suggestions? Thanks,

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Rick Harrison
? I'm very interested in the idea of sending email directly from Rev! Thanks for your hard work on this. It is quite impressive! Rick Harrison ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread J. Landman Gay
On 2/7/05 9:53 AM, Rick Harrison wrote: I clicked on the link for this and it listed the raw text only. It was not a downloadable stack. This is a function of your browser not understanding about .rev files. Andre did upload a real stack, but your browser is interpreting it as text. To

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Andre Garzia
downloadable stack that I can just decompress with Stuffit Expander? I'm very interested in the idea of sending email directly from Rev! Thanks for your hard work on this. It is quite impressive! Rick Harrison -- Andre Alves Garzia 2004 BRAZIL http://studio.soapdog.org

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Rick Harrison
On Feb 7, 2005, at 2:39 PM, Andre Garzia wrote: Rick, thanks for the cumpliments! That stack is a collection of works from many enthusiasts round here! I compressed the stack with standard zip format just for you! :D it's now at http://www.soapdog.org/rev/SMTPRaw.rev.zip Have fun! andre Andre,

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Andre Garzia
On Feb 7, 2005, at 8:03 PM, Rick Harrison wrote: Andre, Thanks! I tried it and I'm getting the following error. error: could not get MX Records, try again in 5 secs Any idea what might be causing this? This means that communication with DNS server is wrong somehow... try emailing other email...

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Rick Harrison
Andre, Now I'm getting: error: server was offended by our HELO Message. Does this mean that the program won't work with my email server because it is looking for Authentication? Thanks in advance. Rick ___ use-revolution mailing list

Re: Success with Sending email without a SMTP Server!!!!

2005-02-07 Thread Andre Garzia
to see if you're an blessed SMTP server for the domain you claim to be. That stack and it's sendmail routines were created to enable a simple-no-fuss way to make apps that report back errors and feedback reports to a central or to solve everyday trouble. It's aimed at sending email without

Re: Success with Sending email without a SMTP Server!!!!

2005-02-06 Thread kee nethery
On Feb 5, 2005, at 6:08 PM, [EMAIL PROTECTED] wrote: some networks will not allow you to use an external smtp server (in canada, sympatico restricts smtp usage to only their smtp server).. We run a mail server on a non-standard port specifically to get past that restriction when we are traveling.

Re: Success with Sending email without a SMTP Server!!!!

2005-02-05 Thread [EMAIL PROTECTED]
just a note to this thread (sorry, i'm a little behind with my life).. some networks will not allow you to use an external smtp server (in canada, sympatico restricts smtp usage to only their smtp server).. ___ use-revolution mailing list

Re: Success with Sending email without a SMTP Server!!!!

2005-02-05 Thread [EMAIL PROTECTED]
Shao Sean also worked quite hard to come up with an auth capability. i actually had a working version of this, but lost my brand new SanDisk mini cruzer that had it on it =( am feeling up to re-writing it again ___ use-revolution mailing list

Re: Success with Sending email without a SMTP Server!!!!

2005-02-01 Thread Dom
kee nethery [EMAIL PROTECTED] wrote: The solution is to have your IP address be listed as an MX for the domain you are sending from. Fixed IP mandatory, no luck ;- -- ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread kee nethery
On Jan 30, 2005, at 10:19 PM, Richard Gaskin wrote: But doesn't this mean that all any spammer has to do is use the same trick to send spam to a recipient on the recipient's own SMTP server? This is exactly what spammers do. The only reason a spammer would use a relay (someone else's SMTP mail

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread Frank Leahy
with Sending email without a SMTP Server To: How to use Revolution use-revolution@lists.runrev.com Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1; format=flowed But doesn't this mean that all any spammer has to do is use the same trick to send spam to a recipient

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread Andre Garzia
On Jan 31, 2005, at 3:27 AM, sims wrote: Andre, Did you use Shao Sean's extremely most excellent code for this? Also, won't some servers (a very small percentage in my experience) still require authentication? Shao Sean also worked quite hard to come up with an auth capability. Sims, the

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread JL RI
Hi Andre, Thanks!, good work (and Sean's too, of course). But I am unable to get consistent results using different servers/accounts. Some of them work fine, but other always stops and gives this message: error: server was offended by our HELO Message. 220-We do not authorize the use of this

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread kee nethery
some servers will do a reverse MX lookup to see if your server (the stack) is listed as a mail server. If not, they will not accept email from you. The solution is to have your IP address be listed as an MX for the domain you are sending from. Kee On Jan 31, 2005, at 9:10 AM, Andre Garzia

Re: Success with Sending email without a SMTP Server!!!!

2005-01-31 Thread Dom
Andre Garzia [EMAIL PROTECTED] wrote: I'll be putting the stack for download in revOnline in couple minutes. Tested here... The log was very short: error: server was offended by our HELO Message. ;- I sent a message from one of my counts to myself (another count) Belonging to the same ISP,

Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Andre Garzia
Dan et al, I am most pleased to announce that we can send email from Rev in pure transcript without a need for SMTP Server or email account. I just create a stack that will show how to do it. You can fetch the destination email, for example [EMAIL PROTECTED], then ask the DNS server for a SMTP

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Richard Gaskin
Andre Garzia wrote: I am most pleased to announce that we can send email from Rev in pure transcript without a need for SMTP Server or email account. I just create a stack that will show how to do it. You can fetch the destination email, for example [EMAIL PROTECTED], then ask the DNS server

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Andre Garzia
Richard, yes, you are right! theres no password! Thats the same technique SPAM makers use, I checked how they did it so that I could send a email out of nowhere. The trick is, instead of me (mail client) talking to my SMTP server and then my SMTP server (authentication goes here) talking to

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread kee nethery
not include passwords. Your SMTP server might decide to not relay your email to the destination SMTP server if your SMTP server can not validate that you are someone it handles mail for. And it might use a password to do that. But if you are sending email to someone on your SMTP server, your SMTP server

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread David Vaughan
On 31/01/2005, at 9:13, Andre Garzia [EMAIL PROTECTED] wrote: snip Well folks the stack is available under my username soapdog at revOnline or thru http://www.soapdog.org/rev/smtpraw.rev sorry I put a space in the file name Andre, I tested sending to a .mac address and got this error in

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread J. Landman Gay
On 1/30/05 4:39 PM, David Vaughan wrote: On 31/01/2005, at 9:13, Andre Garzia [EMAIL PROTECTED] wrote: snip Well folks the stack is available under my username soapdog at revOnline or thru http://www.soapdog.org/rev/smtpraw.rev sorry I put a space in the file name Andre, I tested sending

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Dan Shafer
Andre This seems to work just great. I think it will solve part of my problem. The other part is the reason I didn't use revMail -- I need to be able to send a file attachment OR I need to be able to send HTML formatted email. As far as I can tell, revMail doesn't support either of these

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Dan Shafer
My mistrake. (I hate when that happens!) I see you're not using revMail at all. So libEmail and libSMTP allow me to send email with HTML formatted contents and attachments. I just need to go see how they'll interact with this little script. I suspect this won't be difficult at all. Woohoo!

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Scott Rossi
Recently, Andre Garzia wrote: Well folks the stack is available under my username soapdog at revOnline or thru http://www.soapdog.org/rev/smtpraw.rev sorry I put a space in the file name Just tried it myself -- seemed to work as expected. Even when I used a fictitious email account as

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Dan Shafer
I modified my script using the model for the getMXRecord() function from your stack, then called libSmtpSend with the results. SUCCESS! This is fantastic, my friend. Dan On Jan 30, 2005, at 3:26 PM, Dan Shafer wrote: My mistrake. (I hate when that happens!) I see you're not using revMail at

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Andre Garzia
On Jan 30, 2005, at 10:34 PM, Dan Shafer wrote: I modified my script using the model for the getMXRecord() function from your stack, then called libSmtpSend with the results. SUCCESS! This is fantastic, my friend. Dan Dan, thanks but getMXRecord() is a creation of Shao Sean and she deserves all

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread sims
At 3:26 PM -0800 1/30/05, Dan Shafer wrote: My mistrake. (I hate when that happens!) I see you're not using revMail at all. So libEmail and libSMTP allow me to send email with HTML formatted contents and attachments. I just need to go see how they'll interact with this little script. I suspect

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread Richard Gaskin
servers do not include passwords. Your SMTP server might decide to not relay your email to the destination SMTP server if your SMTP server can not validate that you are someone it handles mail for. And it might use a password to do that. But if you are sending email to someone on your SMTP

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread kee nethery
On Jan 30, 2005, at 9:27 PM, sims wrote: Also, won't some servers (a very small percentage in my experience) still require authentication? The answer is no. Think about it, have you ever entered the authentication password for the people you were sending an outgoing email to? You have entered

Re: Success with Sending email without a SMTP Server!!!!

2005-01-30 Thread sims
SMTP servers accept mail from anyone if it is addressed to someone on their server. Most will not relay from another server and most will not accept mail from their own users if the mail is destined for anyone off their server. Kee Nethery I was referring to the server that *sends* the email

  1   2   >