Re: root mail [SOLVED]

2009-10-13 Thread Christoph Höger
Am Montag, den 12.10.2009, 10:23 -0700 schrieb Konstantin Svist:
 On 10/12/2009 03:35 AM, Markku Kolkka wrote:
  Konstantin Svist kirjoitti viestissään (lähetysaika maanantai,
  12. lokakuuta 2009):
 
  I don't want the localhost mail to go out through a real smtp
  server, and I'm not too keen on running a huge mailing package
  like sendmail or postfix on my laptop. What are my options?
 
  Use esmtp, it handles local mail delivery in addition to sending
  mail to upstream servers. It's available in Fedora, yum install
  esmtp. For documentation see:
  http://esmtp.sourceforge.net/doc.html
 
 
 Thanks, I think that works.
 
 Here's what I did:
 
 * install esmtp-local-delivery (it installs procmail)
 * edit /etc/esmtprc to include this line:
 mda procmail -d user
 (where user is my underprivileged username)
 
 Esmtp does't use aliases, but by lucky coincidence the user is specified 
 right there in the procmail command line :)

Nice to here this, but how do you sendmail to a real mta outside your
box then (aka: How does esmtp decide to route without aliases)?


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: root mail [SOLVED]

2009-10-13 Thread Konstantin Svist

On 10/13/2009 12:08 AM, Christoph Höger wrote:

Nice to here this, but how do you sendmail to a real mta outside your
box then (aka: How does esmtp decide to route without aliases)?



Well, in this case I don't really need to send mail directly from the box.
From what I understand, esmtp only uses procmail for local mail, so I 
could set up a real SMTP server for esmtp to use, as well.


I think what esmtp does is check for the @ symbol. If found, it sends 
mail through SMTP server. If not, it uses procmail. Not sure why aliases 
need to be involved in this...


--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: root mail [SOLVED]

2009-10-13 Thread Christoph Höger
Am Dienstag, den 13.10.2009, 00:27 -0700 schrieb Konstantin Svist:
 On 10/13/2009 12:08 AM, Christoph Höger wrote:
  Nice to here this, but how do you sendmail to a real mta outside your
  box then (aka: How does esmtp decide to route without aliases)?
 
 
 Well, in this case I don't really need to send mail directly from the box.
  From what I understand, esmtp only uses procmail for local mail, so I 
 could set up a real SMTP server for esmtp to use, as well.
 
 I think what esmtp does is check for the @ symbol. If found, it sends 
 mail through SMTP server. If not, it uses procmail. Not sure why aliases 
 need to be involved in this...

Well, if you handle it that way, you basically have one implicit
alias ;)


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: root mail

2009-10-12 Thread Christoph Höger
Am Sonntag, den 11.10.2009, 16:34 -0700 schrieb Konstantin Svist:
 Hi all,
 
 I have a problem with unix mail
 
 Whenever there's a cron failure, etc. mail gets sent to root on 
 localhost. It seems that it tries to use sendmail, except I have ssmtp 
 set up in the alternatives.
  From reading the docs, it looks like ssmtp doesn't support unix mail.
 
 I don't want the localhost mail to go out through a real smtp server, 
 and I'm not too keen on running a huge mailing package like sendmail or 
 postfix on my laptop. What are my options?
 
 Thanks

Hi,

you could write a script directly invoke procmail. That should be pretty
straight forward.

regards

christoph


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: root mail

2009-10-12 Thread Markku Kolkka
Konstantin Svist kirjoitti viestissään (lähetysaika maanantai, 
12. lokakuuta 2009):
 
 I don't want the localhost mail to go out through a real smtp
 server, and I'm not too keen on running a huge mailing package
 like sendmail or postfix on my laptop. What are my options?

Use esmtp, it handles local mail delivery in addition to sending 
mail to upstream servers. It's available in Fedora, yum install 
esmtp. For documentation see: 
http://esmtp.sourceforge.net/doc.html

-- 
 Markku Kolkka
 markku.kol...@iki.fi

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: root mail [SOLVED]

2009-10-12 Thread Konstantin Svist

On 10/12/2009 03:35 AM, Markku Kolkka wrote:

Konstantin Svist kirjoitti viestissään (lähetysaika maanantai,
12. lokakuuta 2009):


I don't want the localhost mail to go out through a real smtp
server, and I'm not too keen on running a huge mailing package
like sendmail or postfix on my laptop. What are my options?


Use esmtp, it handles local mail delivery in addition to sending
mail to upstream servers. It's available in Fedora, yum install
esmtp. For documentation see:
http://esmtp.sourceforge.net/doc.html



Thanks, I think that works.

Here's what I did:

* install esmtp-local-delivery (it installs procmail)
* edit /etc/esmtprc to include this line:
mda procmail -d user
(where user is my underprivileged username)

Esmtp does't use aliases, but by lucky coincidence the user is specified 
right there in the procmail command line :)


--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


root mail

2009-10-11 Thread Konstantin Svist

Hi all,

I have a problem with unix mail

Whenever there's a cron failure, etc. mail gets sent to root on 
localhost. It seems that it tries to use sendmail, except I have ssmtp 
set up in the alternatives.

From reading the docs, it looks like ssmtp doesn't support unix mail.

I don't want the localhost mail to go out through a real smtp server, 
and I'm not too keen on running a huge mailing package like sendmail or 
postfix on my laptop. What are my options?


Thanks


--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Can't receive ROOT mail. Connection refused

2009-06-16 Thread MUSTAFA CAGATAYLI
Hi,

I have installed F11 on to my HP G5000 and trying to configure Evolution to 
read the local mail messages delivered to ROOT from my standard user account.

When I set the proper permissions of folders, I can configure Evolution to read 
the messages from folder, but I need to obtain them from POP3/IMAP.

I configured Evolution and can send local messages from ROOT but can not 
receive ROOT's messages. I tried using both POP and IMAP, both UNPROTECTED or 
SSL'ed, but in every case Evolution returns Connection Refused.

I tried stopping SENDMAIL and installing POSTFIX, but the exact scenario is 
available.

When  I try telnet 110/993 the ports are closed. Using 
ADMINISTRATION-FIREWALL I opened the related ports, saved and reloaded the 
firewall configuration, but nothing changed. Ports still are not responding.

/var/log/maillog has no related log record.

What I need is to manage ROOT's local messages locally, and prefer to do this 
using IMAP.

Any idea ?
-
Mustafa

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Can't receive ROOT mail. Connection refused

2009-06-16 Thread Todd Zullinger
MUSTAFA CAGATAYLI wrote:
 I have installed F11 on to my HP G5000 and trying to configure
 Evolution to read the local mail messages delivered to ROOT from my
 standard user account.

You should setup /etc/aliases to direct mail for root to a normal
user.  Something like this is near the bottom of /etc/aliases by
default:

# Person who should get root's mail
#root:   marc

Change the user to your local user and uncomment the line.  Then run
the newaliases command.  Mail sent to root will now be directed to
your local account.

 When I set the proper permissions of folders, I can configure
 Evolution to read the messages from folder, but I need to obtain
 them from POP3/IMAP.

Why do you need to use POP3 or IMAP?

 I configured Evolution and can send local messages from ROOT but can
 not receive ROOT's messages. I tried using both POP and IMAP, both
 UNPROTECTED or SSL'ed, but in every case Evolution returns
 Connection Refused.

 I tried stopping SENDMAIL and installing POSTFIX, but the exact
 scenario is available.

Sure, neither sendmail nor postfix provide POP3 or IMAP services.  You
could install dovecot to provide that, but it seems like overkill just
to check local mail.

-- 
ToddOpenPGP - KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp
~~
I figure that if God actually does exist, He's big enough to
understand an honest difference of opinion.
-- Isaac Asimov



pgp5KDAVIYGUU.pgp
Description: PGP signature
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

No longer getting root mail after upgrade to FC9

2008-06-01 Thread Ed Gurski
I noticed that since I upgraded to FC9 that I no longer receive any root
e-mail (syslog and cron jobs). I use mutt and the last e-mail I received
was the day before I upgraded!

O also noticed that my weekly cron jobs no longer run!

What am I missing?
-  
Ed Gurski

Linux User 
# 458454  http://counter.li.org




-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list