[Perl-unix-users] Sendmail::Milter without threads

2003-09-29 Thread Mark
Hello, I am interested in Sendmail::Milter on my FreeBSD 4.7R machine, but then for Perl without threads. When I installed Perl, I compiled it without thread support, as I believe thread support is still experimental in Perl 5.8.0. So, is there a Sendmail::Milter that will not require a threads-e

[Perl-unix-users] Sendmail

2003-08-04 Thread Mundell, R. (Ronald)
smime.p7m Description: S/MIME encrypted message

Re: [Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Johnno
try webmin www.webmin.com i use this all the time for sendmail/postfix etc... basicallt it is a handyman toolbox :)) Johnno - Original Message - From: "Tim Rhodes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 21, 2002 7:26 AM Subject: [Perl-un

RE: [Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Adam Frielink
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Tim > Rhodes > Hello Everyone, > I am looking for a Sendmail Web-Based Console and was > wondering if someone > could pass some suggestions my way. I looked at Sendmail Switch, > but it is > jus

[Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Tim Rhodes
Hello Everyone, I am looking for a Sendmail Web-Based Console and was wondering if someone could pass some suggestions my way. I looked at Sendmail Switch, but it is just to expensive. Even a perl solution I could program for adding/editing/removing users via Web Browsers would be much

Re: [Perl-unix-users] SendMail

2001-11-15 Thread Jason Purdy
n Wise" <[EMAIL PROTECTED]> > To: "Perl-Unix-Users" <[EMAIL PROTECTED]> > Sent: Wednesday, November 14, 2001 9:31 PM > Subject: [Perl-unix-users] SendMail > > > I wrote a script that loops through email addresses > validates them then uses MIME::Lite one

Re: [Perl-unix-users] SendMail

2001-11-14 Thread Michael Mimo
; <[EMAIL PROTECTED]> Sent: Wednesday, November 14, 2001 9:31 PM Subject: [Perl-unix-users] SendMail I wrote a script that loops through email addresses validates them then uses MIME::Lite one at a time to send them to SendMail. We have checked the scirpt with 10 -15 email addresses that we ca

[Perl-unix-users] SendMail

2001-11-14 Thread Byron Wise
I wrote a script that loops through email addresses validates them then uses MIME::Lite one at a time to send them to SendMail. We have checked the scirpt with 10 -15 email addresses that we can verify but when we used it the first time using 3700 email addresses it didn't quite work. We had put

AW: [Perl-unix-users] sendmail

2001-10-29 Thread Tim Hammerquist
Byron Wise wrote: > --- lonh SENG <[EMAIL PROTECTED]> wrote: > > I am beginner of perl and unix system. > > I have a flat file containing email address. > > I want to send the same message to those guys in > > the flat file. > > Could anyone help me? > > This is a very basic approa

Re: [Perl-unix-users] sendmail

2001-10-29 Thread Byron Wise
This is a very basic approach that will send a text message to everyone in your flat file: ## This isn't tested ;-) $message = "What I want to say goes here for the body."; open (SENDMAIL,"|/usr/lib/sendmail -t"); open (EMIAL, "myFlatFile") or die "Can't open file: $!\n"; # Read each email add

Re: [Perl-unix-users] sendmail

2001-10-28 Thread $Bill Luebkert
> lonh SENG wrote: > > Hi all, > > I am beginner of perl and unix system. > I have a flat file containing email address. > I want to send the same message to those guys in the flat file. > Could anyone help me? > > Thank you in advance, I would just CC or BCC all of them (

[Perl-unix-users] sendmail

2001-10-28 Thread lonh SENG
 Hi all,       I am beginner of perl and unix system.     I have a flat file containing email address.     I want to send the same message to those guys in the flat file.     Could anyone help me?       Thank you in advance,     Best Regards, lonh