Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Frank Cox
On Sun, 21 Jul 2013 17:28:04 -0400 Fred Smith wrote: > > and it has a queue or is it so simple-minded only to work if > > all is perfect and if the smtp server it uses is not reachable > > messages are silently lost? This is how I have implemented a "retry" using the cleancode-email program that

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Fred Smith
On Sun, Jul 21, 2013 at 02:16:50PM +0200, Reindl Harald wrote: > > > Am 21.07.2013 14:07, schrieb Fred Smith: > > There is a tool named SendEmail, which is a perl script that performs the > > sending side (not receiving) of SMTP email handling. It's straightforward > > to use via commandline, whi

[CentOS] Question about Red Hat beta

2013-07-21 Thread Joe Keller
Does CentOS get an early version of a beta release from Red Hat or not? I assume select hardware vendors get early access but I didn't know who else. Thanks, Joe ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Joseph Spenner
On Jul 21, 2013, at 1:42 AM, Indunil Jayasooriya wrote: > Hi, > > When no MTA is installed, How to send an email with a cronjob? > > I have below entrty in my cronjob? > > my /etc/cron.d/backup file looks like this. > > MAILTO=myem...@example.com > 15 11 * * * root /root/scripts/backup.sh >

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Ben Mohilef
> Hi, > > When no MTA is installed, How to send an email with a cronjob? > > I have below entrty in my cronjob? > > my /etc/cron.d/backup file looks like this. > > MAILTO=myem...@example.com > 15 11 * * * root /root/scripts/backup.sh > > Can I send this email via SMTP server? > The following

[CentOS] What does this error mean?

2013-07-21 Thread Gilbert Sebenste
Hello everyone, It took a few reboots after installing the latest kernel (.14) to come back up. After it did, I saw this: WARNING: Kernel Errors Present nForce2_smbus :00:0a.1: Error probing SMB1. Bad video card? my Nvidia has been working fine. No on-screen problems/issues noted. G

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Larry Martell
On Sun, 21 Jul 2013 14:12:55 +0530 > Indunil Jayasooriya wrote: > > > When no MTA is installed, How to send an email with a cronjob? > I usually do this: import smtplib server = smtplib.SMTP('smtp.gmail.com:587') server.ehlo() server.starttls() server.ehlo

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Frank Cox
On Sun, 21 Jul 2013 14:12:55 +0530 Indunil Jayasooriya wrote: > When no MTA is installed, How to send an email with a cronjob? I personally use this: http://www.cleancode.org/projects/email You can get a Centos rpm for that from my webpage: Centos 5: http://www.melvilletheatre.com/articles/el

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Scott Robbins
On Sun, Jul 21, 2013 at 03:19:33PM +0200, Alexander Dalloz wrote: > Am 21.07.2013 14:56, schrieb Scott Robbins: > > On Sun, Jul 21, 2013 at 02:31:32PM +0200, Alexander Dalloz wrote: > > > > > >> > >> There is another null client called msmtp > >> > >> http://msmtp.sourceforge.net/ > > > >> but t

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Alexander Dalloz
Am 21.07.2013 14:56, schrieb Scott Robbins: > On Sun, Jul 21, 2013 at 02:31:32PM +0200, Alexander Dalloz wrote: > > >> >> If you decide a full blown MTA is too heavy weight in your environment >> on the different nodes (Postfix isn't the ideal choice for a so called >> null client), then have a l

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Scott Robbins
On Sun, Jul 21, 2013 at 02:31:32PM +0200, Alexander Dalloz wrote: > > If you decide a full blown MTA is too heavy weight in your environment > on the different nodes (Postfix isn't the ideal choice for a so called > null client), then have a look at ssmtp for example. It is provided by EPEL > >

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Alexander Dalloz
Am 21.07.2013 10:42, schrieb Indunil Jayasooriya: > Hi, > > When no MTA is installed, How to send an email with a cronjob? > > I have below entrty in my cronjob? > > my /etc/cron.d/backup file looks like this. > > MAILTO=myem...@example.com > 15 11 * * * root /root/scripts/backup.sh > > Can I

Re: [CentOS] SSD support in C5 and C6

2013-07-21 Thread Alexander Dalloz
Am 21.07.2013 04:59, schrieb Yves Bellefeuille: > On Friday 19 July 2013, Wade Hampton wrote: > >> - set noatime in /etc/fstab >> (or relatime w/ newer to keep atime data sane) > > Also set nodiratime. if you specify noatime it includes nodiratime already. > Yves Alexander _

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Fred Smith
On Sun, Jul 21, 2013 at 02:12:55PM +0530, Indunil Jayasooriya wrote: > Hi, > > When no MTA is installed, How to send an email with a cronjob? > > I have below entrty in my cronjob? > > my /etc/cron.d/backup file looks like this. > > MAILTO=myem...@example.com > 15 11 * * * root /root/scripts/ba

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Indunil Jayasooriya
> > > Can I send this email via SMTP server? > > > > > > You don't. > > You would have had to gone to some effort to not have an MTA > installed, as one is installed by default. Did you remove it (or > simply not configure it)? [they basically work for localhost > delivery without any changes.] > >

Re: [CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Arun Khan
On Sun, Jul 21, 2013 at 2:12 PM, Indunil Jayasooriya wrote: > Hi, > > When no MTA is installed, How to send an email with a cronjob? Install postfix and configure to accept messages from 'localhost' only. > > MAILTO=myem...@example.com I guess you have a 'real' email id in your setup. > 15 11

[CentOS] When no MTA is installed, How to send an email with a cronjob?

2013-07-21 Thread Indunil Jayasooriya
Hi, When no MTA is installed, How to send an email with a cronjob? I have below entrty in my cronjob? my /etc/cron.d/backup file looks like this. MAILTO=myem...@example.com 15 11 * * * root /root/scripts/backup.sh Can I send this email via SMTP server? Hope to hear from you. -- Thank