Re: OT: perl mail problems

2012-01-29 Thread Da Rock

On 01/29/12 02:13, Matthew Seaman wrote:

On 28/01/2012 13:39, Da Rock wrote:

I know this is not exactly FreeBSD related, but I'm in need of a monk
that can enlighten me on a sacred incantation to connect perl to an imap
server using Mail::Box modules :) If it helps people sleep, its all
running only on FreeBSD systems...

I have googled and searched, and googled some more, and tested, and then
went back to the drawing board and googled yet again... there is simply
no clear answer out there. All the docs are very disjointed from my
reckoning- with no clear direction that explains how you get from a-b.

I have enabled a connection (I think - based on my tests and logs), but
I cannot get further than that. I have a Mail::Box::Manager
instantiated, and then I have to use Mail::Box::IMAP4 to open a
connection to the server. From there I need to get a list of the folders
available- and thats where I get stymied.

All the docs are pop3 based, or maildir based, or mbox. The imap is very
sketchy... and what is out there says to basically connect, and then
there is a jump to folders and messages with no idea of what is involved
in between. Although I did see one complete example with pop3, but it
won't work for imap.

This is absolutely typical -- IMAP is frequently treated as
POP-with-extra-bits, which really makes no sense whatsoever.  There's a
fundamental difference in behaviour to do with where the mail is
actually stored.  Anything that works by connecting to an IMAP server
and downloading all the new messages to hold and read locally really is
missing the point.
I think there is a genuine effort to help make it easier to use and to 
abstract the backend, but it doesn't seem the coder has a handle on it 
themselves. They seem more familiar with filesystem based mail then the 
network ones- and then familiarity with pop3 rules. Therefore me, as a 
newb, has next to no hope of figuring it out... :/

One of the biggest problems is the username confuses any other module
method than the Mail::Box::IMAP4 - the syntax is user@domain, and so if
I use Mail::Box::Manager it will compile it into a url form ie
imap4://user@domain:password@mail.server which it obviously barfs on and
refuses to look beyond user@domain.

Yeah, IMAP4 doesn't do URL-style things itself, so this is a fiction
invented to appease the higher layers of Mail::Box.  Unfortunately, '@'
is of syntactic significance to URL schemes, making it difficult to
incorporate usernames containing it.

Hmmm can you substitute a hex encoded character string in that
username?  %40 should be the encoding for an @ character.
That could work... I might have a crack at that. I thought pop3 would 
have trouble as well, you can use that username structure there too.

I really seem to be missing something fundamental here. I'm only trying
to create some tools which will handle some situations apparently only
local to my systems, and improve my perl foo before I start creating
modules of my own and testing mod_perl.

If someone can help clear this up I'll be happy to communicate off list
if that is necessary.

Is all the e-mail you have to deal with stored on your IMAP4 server?  If
so, then using Mail::IMAPClient directly[*] might serve you better
rather than through the Mail::Box and Mail::Transport classes.  However,
that's a much lower level interface and you'll need to be fairly au-fait
with RFC 3501.  (That's not as bad as it sounds: all it boils down to is
finding what the command is called in the IMAP protocol when you want to
achieve a particular effect.)
Yes... I was dreading that a bit, but it does seem easier. I was hoping 
it would be more like Email::Simple, but it doesn't seem to be there 
yet. That said, I'll try that trick and see if it works first.

One thing that I notice on a cursory reading of Mail::Box::IMAP4 is that
it seems to assume things about the behaviour of the IMAP message store
which aren't necessarily true for all different IMAP servers.  (ICBW --
it was a /very/ cursory reading.)  Usernames of the form
'n...@example.com' are one of those things you can do with IMAP which
tend to come as a bit of a surprise to people used to other mailclient
protocols.
It seems to make some assumptions based on common uses, and I believe it 
said you can override others; but yes it is also still under 
development - a note which appears and disappears from time to time :S


Thanks for the help guys. I've stepped away from php for security 
reasons; and the fact that I can integrate perl right into apache with 
mod_perl.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: OT: perl mail problems

2012-01-29 Thread Matthew Seaman
On 29/01/2012 08:11, Da Rock wrote:
 Thanks for the help guys. I've stepped away from php for security
 reasons; and the fact that I can integrate perl right into apache with
 mod_perl.

Verb. Sap.

Checkout PSGI if you're doing web-based perl things.  See
http://plackperl.org/

It means you can code up your web app using the Plack API using a simple
built-in HTTP server and then deploy to your production systems using
full-on mod_perl and apache.  Or mod_psgi and apache.  Or any one of
about twenty different combinations -- whatever web server, plugin
module, toolkit, etc. you already have deployed.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: OT: perl mail problems

2012-01-29 Thread perryh
Matthew Seaman m.sea...@infracaninophile.co.uk wrote:
 
 Anything that works by connecting to an IMAP server and
 downloading all the new messages to hold and read locally
 really is missing the point.

... or is working around administrative issues, e.g. the mail
recipient wants the mail stored locally, and the mail-server
provides IMAP but not POP.

BTW fetchmail is the canonical (although not the only) solution
to this problem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: OT: perl mail problems

2012-01-29 Thread Da Rock

On 01/29/12 18:56, Matthew Seaman wrote:

On 29/01/2012 08:11, Da Rock wrote:

Thanks for the help guys. I've stepped away from php for security
reasons; and the fact that I can integrate perl right into apache with
mod_perl.

Verb. Sap.

Checkout PSGI if you're doing web-based perl things.  See
http://plackperl.org/

It means you can code up your web app using the Plack API using a simple
built-in HTTP server and then deploy to your production systems using
full-on mod_perl and apache.  Or mod_psgi and apache.  Or any one of
about twenty different combinations -- whatever web server, plugin
module, toolkit, etc. you already have deployed.
Thanks Matthew. I'll look into that at some point, but I'm not entirely 
sure it will be necessary in my situation.


I finally decided to scrap Mail::Box and go with Mail::IMAPClient 
instead as suggested (I didn't even bother with the workaround), and it 
worked immediately! So I'm stoked... much simpler to use. Should have 
called it Mail::IMAPSimple instead :)


All that googling for nought! Mail::IMAPClient never really came up as a 
contender when searching perl imap - it was all about Mail::Box. Weird...


Cheers
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


OT: perl mail problems

2012-01-28 Thread Da Rock
I know this is not exactly FreeBSD related, but I'm in need of a monk 
that can enlighten me on a sacred incantation to connect perl to an imap 
server using Mail::Box modules :) If it helps people sleep, its all 
running only on FreeBSD systems...


I have googled and searched, and googled some more, and tested, and then 
went back to the drawing board and googled yet again... there is simply 
no clear answer out there. All the docs are very disjointed from my 
reckoning- with no clear direction that explains how you get from a-b.


I have enabled a connection (I think - based on my tests and logs), but 
I cannot get further than that. I have a Mail::Box::Manager 
instantiated, and then I have to use Mail::Box::IMAP4 to open a 
connection to the server. From there I need to get a list of the folders 
available- and thats where I get stymied.


All the docs are pop3 based, or maildir based, or mbox. The imap is very 
sketchy... and what is out there says to basically connect, and then 
there is a jump to folders and messages with no idea of what is involved 
in between. Although I did see one complete example with pop3, but it 
won't work for imap.


One of the biggest problems is the username confuses any other module 
method than the Mail::Box::IMAP4 - the syntax is user@domain, and so if 
I use Mail::Box::Manager it will compile it into a url form ie 
imap4://user@domain:password@mail.server which it obviously barfs on and 
refuses to look beyond user@domain.


I really seem to be missing something fundamental here. I'm only trying 
to create some tools which will handle some situations apparently only 
local to my systems, and improve my perl foo before I start creating 
modules of my own and testing mod_perl.


If someone can help clear this up I'll be happy to communicate off list 
if that is necessary.


TIA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: OT: perl mail problems

2012-01-28 Thread Matthew Seaman
On 28/01/2012 13:39, Da Rock wrote:
 I know this is not exactly FreeBSD related, but I'm in need of a monk
 that can enlighten me on a sacred incantation to connect perl to an imap
 server using Mail::Box modules :) If it helps people sleep, its all
 running only on FreeBSD systems...
 
 I have googled and searched, and googled some more, and tested, and then
 went back to the drawing board and googled yet again... there is simply
 no clear answer out there. All the docs are very disjointed from my
 reckoning- with no clear direction that explains how you get from a-b.
 
 I have enabled a connection (I think - based on my tests and logs), but
 I cannot get further than that. I have a Mail::Box::Manager
 instantiated, and then I have to use Mail::Box::IMAP4 to open a
 connection to the server. From there I need to get a list of the folders
 available- and thats where I get stymied.
 
 All the docs are pop3 based, or maildir based, or mbox. The imap is very
 sketchy... and what is out there says to basically connect, and then
 there is a jump to folders and messages with no idea of what is involved
 in between. Although I did see one complete example with pop3, but it
 won't work for imap.

This is absolutely typical -- IMAP is frequently treated as
POP-with-extra-bits, which really makes no sense whatsoever.  There's a
fundamental difference in behaviour to do with where the mail is
actually stored.  Anything that works by connecting to an IMAP server
and downloading all the new messages to hold and read locally really is
missing the point.

 One of the biggest problems is the username confuses any other module
 method than the Mail::Box::IMAP4 - the syntax is user@domain, and so if
 I use Mail::Box::Manager it will compile it into a url form ie
 imap4://user@domain:password@mail.server which it obviously barfs on and
 refuses to look beyond user@domain.

Yeah, IMAP4 doesn't do URL-style things itself, so this is a fiction
invented to appease the higher layers of Mail::Box.  Unfortunately, '@'
is of syntactic significance to URL schemes, making it difficult to
incorporate usernames containing it.

Hmmm can you substitute a hex encoded character string in that
username?  %40 should be the encoding for an @ character.

 I really seem to be missing something fundamental here. I'm only trying
 to create some tools which will handle some situations apparently only
 local to my systems, and improve my perl foo before I start creating
 modules of my own and testing mod_perl.
 
 If someone can help clear this up I'll be happy to communicate off list
 if that is necessary.

Is all the e-mail you have to deal with stored on your IMAP4 server?  If
so, then using Mail::IMAPClient directly[*] might serve you better
rather than through the Mail::Box and Mail::Transport classes.  However,
that's a much lower level interface and you'll need to be fairly au-fait
with RFC 3501.  (That's not as bad as it sounds: all it boils down to is
finding what the command is called in the IMAP protocol when you want to
achieve a particular effect.)

One thing that I notice on a cursory reading of Mail::Box::IMAP4 is that
it seems to assume things about the behaviour of the IMAP message store
which aren't necessarily true for all different IMAP servers.  (ICBW --
it was a /very/ cursory reading.)  Usernames of the form
'n...@example.com' are one of those things you can do with IMAP which
tend to come as a bit of a surprise to people used to other mailclient
protocols.

Cheers,

Matthew

[*] Mail::Box et al use Mail::IMAPClient behind the scenes.

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
JID: matt...@infracaninophile.co.uk   Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: OT: perl mail problems

2012-01-28 Thread Paul Macdonald

On 28/01/2012 13:39, Da Rock wrote:
I know this is not exactly FreeBSD related, but I'm in need of a monk 
that can enlighten me on a sacred incantation to connect perl to an 
imap server using Mail::Box modules :) If it helps people sleep, its 
all running only on FreeBSD systems...


I have googled and searched, and googled some more, and tested, and 
then went back to the drawing board and googled yet again... there is 
simply no clear answer out there. All the docs are very disjointed 
from my reckoning- with no clear direction that explains how you get 
from a-b.


I have enabled a connection (I think - based on my tests and logs), 
but I cannot get further than that. I have a Mail::Box::Manager 
instantiated, and then I have to use Mail::Box::IMAP4 to open a 
connection to the server. From there I need to get a list of the 
folders available- and thats where I get stymied.


All the docs are pop3 based, or maildir based, or mbox. The imap is 
very sketchy... and what is out there says to basically connect, and 
then there is a jump to folders and messages with no idea of what is 
involved in between. Although I did see one complete example with 
pop3, but it won't work for imap.



there's good php support for IMAP, documentation might be better

http://uk.php.net/manual/en/function.imap-list.php
(easily scripted via cli).


Paul..


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


postfix / windows live mail problems (possibly OT)

2011-03-16 Thread Mark Moellering
I recently set up a postfix mail server on freebsd 8.1 with dovecot.  I 
am having trouble sending mail using Windows Live Mail.

The error I see in the logfiles is:
Mar 16 13:13:57 mail postfix/smtpd[5159]: connect from 
c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]
Mar 16 13:13:57 mail postfix/smtpd[5159]: NOQUEUE: reject: RCPT from 
c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]: 554 5.7.1 
m...@.com: Relay access denied; from=b...@.com 
to=m...@.com proto=ESMTP helo=HPPC
Mar 16 13:13:57 mail postfix/smtpd[5159]: disconnect from 
c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]


The error Windows Live displays is:

Server Error: 554
Server Response: 554 5.7.1 m...@.com: Relay access denied
Server: 'mail..com'
Windows Live Mail Error ID: 0x800CCC79
Protocol: SMTP
Port: 587
Secure(SSL): No

If anyone can point me to a better list or otherwise help out, it would 
be greatly appreciated.  Naturally, Thunderbird and KDE-Mail work fine...


Mark Moellering
Class-Creator . com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: postfix / windows live mail problems (possibly OT)

2011-03-16 Thread Ilya Kazakevich
Your postfix does not relay mails from this client.
See http://www.postfix.org/SMTPD_ACCESS_README.html

http://www.postfix.org/SMTPD_ACCESS_README.htmlI suggest you to remove
your IPs from messages next time. By the way, postfix should have its own
mail-list, not freebsd:)

On Wed, Mar 16, 2011 at 11:35 PM, Mark Moellering m...@msen.com wrote:

 I recently set up a postfix mail server on freebsd 8.1 with dovecot.  I am
 having trouble sending mail using Windows Live Mail.
 The error I see in the logfiles is:
 Mar 16 13:13:57 mail postfix/smtpd[5159]: connect from
 c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]
 Mar 16 13:13:57 mail postfix/smtpd[5159]: NOQUEUE: reject: RCPT from
 c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]: 554 5.7.1 
 m...@.com: Relay access denied; from=b...@.com to=
 m...@.com proto=ESMTP helo=HPPC
 Mar 16 13:13:57 mail postfix/smtpd[5159]: disconnect from
 c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]

 The error Windows Live displays is:

 Server Error: 554
 Server Response: 554 5.7.1 m...@.com: Relay access denied
 Server: 'mail..com'
 Windows Live Mail Error ID: 0x800CCC79
 Protocol: SMTP
 Port: 587
 Secure(SSL): No

 If anyone can point me to a better list or otherwise help out, it would be
 greatly appreciated.  Naturally, Thunderbird and KDE-Mail work fine...

 Mark Moellering
 Class-Creator . com
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 freebsd-questions-unsubscr...@freebsd.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: postfix / windows live mail problems (possibly OT)

2011-03-16 Thread Mark Moellering
My apologies, I could not find the postfix mailing list initially.  (it 
has been a Deal with Microsoft software day...)

I have now found the proper list,
Thank You

On 16-Mar-11 5:15 PM, Ilya Kazakevich wrote:

Your postfix does not relay mails from this client.
See http://www.postfix.org/SMTPD_ACCESS_README.html

I suggest you to remove your IPs from messages next time. By the way, 
postfix should have its own mail-list, not freebsd:)


On Wed, Mar 16, 2011 at 11:35 PM, Mark Moellering m...@msen.com 
mailto:m...@msen.com wrote:


I recently set up a postfix mail server on freebsd 8.1 with
dovecot.  I am having trouble sending mail using Windows Live Mail.
The error I see in the logfiles is:
Mar 16 13:13:57 mail postfix/smtpd[5159]: connect from
c-68-40-255-141.hsd1.mi.comcast.net
http://c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]
Mar 16 13:13:57 mail postfix/smtpd[5159]: NOQUEUE: reject: RCPT
from c-68-40-255-141.hsd1.mi.comcast.net
http://c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]: 554
5.7.1 m...@.com mailto:m...@.com: Relay access denied;
from=b...@.com mailto:b...@.com to=m...@.com
mailto:m...@.com proto=ESMTP helo=HPPC
Mar 16 13:13:57 mail postfix/smtpd[5159]: disconnect from
c-68-40-255-141.hsd1.mi.comcast.net
http://c-68-40-255-141.hsd1.mi.comcast.net[68.40.255.141]

The error Windows Live displays is:

Server Error: 554
Server Response: 554 5.7.1 m...@.com mailto:m...@.com:
Relay access denied
Server: 'mail..com http://mail..com'
Windows Live Mail Error ID: 0x800CCC79
Protocol: SMTP
Port: 587
Secure(SSL): No

If anyone can point me to a better list or otherwise help out, it
would be greatly appreciated.  Naturally, Thunderbird and KDE-Mail
work fine...

Mark Moellering
Class-Creator . com
___
freebsd-questions@freebsd.org
mailto:freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org
mailto:freebsd-questions-unsubscr...@freebsd.org




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: postfix / windows live mail problems (possibly OT)

2011-03-16 Thread Jerry
On Wed, 16 Mar 2011 17:48:36 -0400
Mark Moellering m...@msen.com articulated:

 My apologies, I could not find the postfix mailing list initially.
 (it has been a Deal with Microsoft software day...)
 I have now found the proper list,
 Thank You

Before posting to the Postfix list, follow the directions on the
Postfix debug page: http://www.postfix.com/DEBUG_README.html. In
addition, lose the Top Posting technique. I can assure you it will
not be appreciated there.

Specifically:

Reporting problems to postfix-us...@postfix.org

The people who participate on postfix-us...@postfix.org are very
helpful, especially if YOU provide them with sufficient information.
Remember, these volunteers are willing to help, but their time is
limited.

When reporting a problem, be sure to include the following information.

A summary of the problem. Please do not just send some logging without
explanation of what YOU believe is wrong.

Complete error messages. Please use cut-and-paste, or use attachments,
instead of reciting information from memory.

Output from postconf -n. Please do not send your main.cf file, or
500+ lines of postconf output.

Better, provide output from the postfinger tool. This can be found at
http://ftp.wl0.org/SOURCES/postfinger.

If the problem is SASL related, consider including the output from the
saslfinger tool. This can be found at
http://postfix.state-of-mind.de/patrick.koetter/saslfinger/.

I use Windows Live Mail via Postfix all the time. I know it works quite well. 
You
probably do not have SASL or some other simple thing configured
incorrectly. This is not a Windows Live Mail problem.

-- 
Jerry ✌
freebsd.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

The latest toy has just hit the shops - a talking Muslim doll. Nobody
knows what the hell it says because no one's got the balls to pull the
cord.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


mail problems....

2010-09-26 Thread Gary Kline

i spent entire day saturday getting my primary server up to date.  
unfortunately, no mail can get out.
maybe for days..

mail Can get in.

anybody hv a clue so i can fix this next time i portupgrade???

gary

ps: to polyt: no jttd-5 

-- 
Gary Kline  Seattle BSD Users' Group (seabug)  | kl...@magnesium.net
Thought Unlimited Org's Alternate Email Site
http://www.magnesium.net/~kline
   To live is not a necessity; but to live honorably...is a necessity. -Kant

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: mail problems....

2010-09-26 Thread Jerry
On Sun, 26 Sep 2010 03:20:18 -0700
Gary Kline kl...@magnesium.net articulated:

 i spent entire day saturday getting my primary server up to date.
 unfortunately, no mail can get out. maybe for days..
 
 mail Can get in.

Sorry, crystal ball is out for repairs. Perhaps you could enlighten us
with some pertinent log entries, MTA being employed, etc. If Postfix,
provide output from the postfinger tool. This can be found at
http://ftp.wl0.org/SOURCES/postfinger. If the problem is SASL related,
consider including the output from the saslfinger tool. This can be
found at http://postfix.state-of-mind.de/patrick.koetter/saslfinger/.
If the problem is about too much mail in the queue, consider including
output from the qshape tool, as described in the QSHAPE_README file. I
cannot help you with other MTAs.

-- 
Jerry ✌
freebsd.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__


signature.asc
Description: PGP signature


Re: mail problems....

2010-09-26 Thread Ryan Coleman
I'd lay dollars to donuts that some service you are running (SASL, AV, etc) is 
not running and it's hanging there. Have you looked at the logs? Or done a 
verbose mailing to yourself? Your MTA should have a stuck queue list and 
reasons why for you.

--
Ryan

On Sep 26, 2010, at 7:01 AM, Jerry wrote:

 On Sun, 26 Sep 2010 03:20:18 -0700
 Gary Kline kl...@magnesium.net articulated:
 
 i spent entire day saturday getting my primary server up to date.
 unfortunately, no mail can get out. maybe for days..
 
 mail Can get in.
 
 Sorry, crystal ball is out for repairs. Perhaps you could enlighten us
 with some pertinent log entries, MTA being employed, etc. If Postfix,
 provide output from the postfinger tool. This can be found at
 http://ftp.wl0.org/SOURCES/postfinger. If the problem is SASL related,
 consider including the output from the saslfinger tool. This can be
 found at http://postfix.state-of-mind.de/patrick.koetter/saslfinger/.
 If the problem is about too much mail in the queue, consider including
 output from the qshape tool, as described in the QSHAPE_README file. I
 cannot help you with other MTAs.
 
 -- 
 Jerry ✌
 freebsd.u...@seibercom.net
 
 Disclaimer: off-list followups get on-list replies or get ignored.
 Please do not ignore the Reply-To header.
 __

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Mail problems

2005-08-18 Thread Giorgos Keramidas
On 2005-08-17 13:33, John Larson [EMAIL PROTECTED] wrote:
 I have a peer to peer network. I have freebsd
 4.11,apache2,postfix,mysql40, imagemagick,perl, running just fine,
 however mail is a problem. For one user name everything works
 fine. for another not so fine. the only difference that I can see is
 that one username lacks $home/var/mail while the other doesn't.  Any
 help would be appreciated. Thank you.  John Larson

What are the exact messages Postfix writes to /var/log/maillog ?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mail problems

2005-08-17 Thread John Larson
I have a peer to peer network. I have  freebsd
4.11,apache2,postfix,mysql40, imagemagick,perl,
running just fine, however mail is a problem. For one
user name everything works fine. for another not so
fine. the only difference that I can see is that one
username lacks $home/var/mail while the other doesn't.
Any help would be appreciated. Thank you.
John Larson 

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mail problems (was: SCO going after BSD???)

2003-11-19 Thread Greg 'groggy' Lehey
On Wednesday, 19 November 2003 at 20:11:22 -0500, SWIT wrote:
 is this a unix thing or what.
  many times i get messages from the list were the message is an attachment
 and not in the email.
 was curious as to why.

 thanks
 newbie marine
 - Original Message -
 From: Kris Kennaway [EMAIL PROTECTED]
 To: Sean Countryman [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 7:52 PM
 Subject: Re: SCO going after BSD???

Kris PGP signs his mail (like I do).  This requires MIME.  Most MUAs
show text/plain attachments directly.

Greg
--
See complete headers for address and phone numbers.


pgp0.pgp
Description: PGP signature


Mail Problems.

2003-11-19 Thread Minnesota Slinky
Greg,

Sorry to bother you personally, but I seem to be having a mail-list
problem I think you can help me with.  I have been able to reply to
certain messages on the list, but I get the following message when I
send a new message:

Message from  yahoo.com.
Unable to deliver message to the following address(es).

[EMAIL PROTECTED]:
216.136.204.125 failed after I sent the message.
Remote host said: 550 Error: Message content rejected

--- Original message follows.

Return-Path: [EMAIL PROTECTED]

The original message is over 5k.  Message truncated to 1K.

Received: from c-66-41-18-160.mn.client2.attbi.com (HELO Nomad)
([EMAIL PROTECTED] with login)

Please help,  I would really like to post to the list again!

Eric F Crist
President
AdTech Integrated Systems, Inc
(952) 403-9000


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Greg 'groggy'
Lehey
Sent: Wednesday, November 19, 2003 7:54 PM
To: SWIT
Cc: [EMAIL PROTECTED]
Subject: Mail problems (was: SCO going after BSD???)

On Wednesday, 19 November 2003 at 20:11:22 -0500, SWIT wrote:
 is this a unix thing or what.
  many times i get messages from the list were the message is an
attachment
 and not in the email.
 was curious as to why.

 thanks
 newbie marine
 - Original Message -
 From: Kris Kennaway [EMAIL PROTECTED]
 To: Sean Countryman [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, November 19, 2003 7:52 PM
 Subject: Re: SCO going after BSD???

Kris PGP signs his mail (like I do).  This requires MIME.  Most MUAs
show text/plain attachments directly.

Greg
--
See complete headers for address and phone numbers.


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


mail problems

2003-01-09 Thread Bsd Neophyte

i've setup my webramp700s to send logs to my freebsd machine daily.

however, it says that it cannot send the mail.

i really don't know much about sendmail, but these two processes are
running:

root  85  0.0  0.3  2884 1592  ??  Ss   22Oct02   9:05.25 sendmail:
accepting connections (sendmail)
smmsp 88  0.0  0.3  2788 1484  ??  Is   22Oct02   0:13.08 sendmail:
Queue runner@00:30:00 for /var/spool/clientmqueue (sendmail)


i'm assuming this will allow for the receipt of email.  is there more that
needs to be done?

-Sameer



__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: mail problems

2003-01-09 Thread Duncan Anker
On Fri, 2003-01-10 at 11:45, Bsd Neophyte wrote:
 i've setup my webramp700s to send logs to my freebsd machine daily.
 
 however, it says that it cannot send the mail.
 
 i really don't know much about sendmail, but these two processes are
 running:
 
 root  85  0.0  0.3  2884 1592  ??  Ss   22Oct02   9:05.25 sendmail:
 accepting connections (sendmail)
 smmsp 88  0.0  0.3  2788 1484  ??  Is   22Oct02   0:13.08 sendmail:
 Queue runner@00:30:00 for /var/spool/clientmqueue (sendmail)
 
 
 i'm assuming this will allow for the receipt of email.  is there more that
 needs to be done?
 

Starting with FreeBSD 4.6 (I think) Sendmail must be running to accept
mail from the localhost. That is likely what your first sendmail process
is doing there. It may not be listening on the external interface.

You can check this by telnetting to port 25 and see if you can connect.

Edit your /etc/rc.conf file and make sure you have

sendmail_enable=YES

in it somewhere.

Then:

# sh /etc/rc.sendmail stop  sh /etc/rc.sendmail start

to make sure it's going properly. Doublecheck by telnetting again.

-- 

The information contained in this email is confidential.
If you are not the intended recipient, you may not disclose or use the
information in this email in any way.
Dark Blue Sea does not guarantee the integrity of any emails or attached
files.
The views or opinions expressed are the author's own and may not reflect
the views or opinions of Dark Blue Sea.
Dark Blue Sea does not warrant that any attachments are free from
viruses or other defects.
You assume all liability for any loss, damage or other consequences
which may arise from opening or using the attachments.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Root Mail Problems

2002-11-02 Thread Kizer
FreeBSD Users,

I've been using FreeBSD for quite some time now and have never had any real
difficulty with it until now.  My BSD box (4.7) runs as a gateway/firewall
for my adsl and i've been doing a little fine tuning lately, and one of
those is to get my BSD box to forward all mail that is sent to the root
account to my real email address.  I figured this wouldn't be to difficult.

I've tried two things so far which both don't work.

1)  Create a .forward file in my root folder with my email address in it,
this supposedly will forward all mail to the address.  This didn't work.

2)  Edited the aliases file in /etc and added my email address (and rebuilt)
for the root account.  This didn't work either.

After inspecting the maillog here is what I'm seeing.

--
Nov  2 03:11:43 Kantserver sendmail[1284]: gethostbyaddr(1.1.4.1) failed: 1
Nov  2 03:11:43 Kantserver sendmail[1284]: gA29BhZg001284: from=kizer,
size=345, class=0, nrcpts=1, msgid=200211020911.gA29BhZg001284@Kantserver,
relay=root@localhost
Nov  2 03:11:47 Kantserver sendmail[1286]: gA29BhZg001284:
[EMAIL PROTECTED], ctladdr=kizer (1001/0), delay=00:00:04,
xdelay=00:00:04, mailer=esmtp, pri=30054, relay=vm4-ext.prodigy.net.
[207.115.63.115], dsn=5.6.0, stat=Data format error
Nov  2 03:11:47 Kantserver sendmail[1286]: gA29BhZg001284: gA29BlZf001286:
DSN: Data format error
Nov  2 03:11:47 Kantserver sendmail[1286]: gA29BlZf001286: to=kizer,
delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31369, relay=local,
dsn=2.0.0, stat=Sent
--

I'm not good at reading these but is the prodigy address telling me that it
doesn't like the fact the the from address isn't from a FQDN?  That's the
impression that I get.

Funny thing is this...I can run the same command to send an email to my
hotmail account and it WILL work, or a friends email and it WILL work, so
what gives?

Any ideas or suggestions would be greatly appreciated.

Thanks!

Ed

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message