Re: Mail Spool Problems / IMAP

2008-04-08 Thread Chris Maness
, squirrelmail will list the e-mail, but when I click on the e-mail, I get the message: ERROR: The server couldn't find the message you requested. Most probably your message list was out of date and the message has been moved away or deleted (perhaps by another program accessing the same mailbox

Re: Mail Spool Problems / IMAP

2008-04-08 Thread Chuck Swiger
://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Mail Spool Problems / IMAP

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

Re: Mail Spool Problems / IMAP

2008-04-08 Thread Mel
that starts with 'From ' that is not the start of a mail should be changed to 'From ' before ending up in the mbox file. This test weeds it out, allthough there's still room for false positives, easily resolved by the human brain: grep '^From ' /var/mail/myloginname |grep -v '200[78]$' -- Mel

Re: Mail Spool Problems / IMAP

2008-04-08 Thread Chris Maness
' that is not the start of a mail should be changed to 'From ' before ending up in the mbox file. This test weeds it out, allthough there's still room for false positives, easily resolved by the human brain: grep '^From ' /var/mail/myloginname |grep -v '200[78]$' -- Mel Problem with today's modular

Re: Mail Spool Problems / IMAP

2008-04-08 Thread Jerry McAllister
('') stuck in there. Try taking those away from in front of the initial From. jerry From MAILER-DAEMON Tue Apr 8 10:49:02 2008 Date: 08 Apr 2008 10:49:02 -0700 From: Mail System Internal Data [EMAIL PROTECTED] Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA Message-ID: [EMAIL PROTECTED] X

Mail Spool Problems / IMAP

2008-04-07 Thread Chris Maness
://www.chrismaness.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Mail Spool Problems / IMAP

2008-04-07 Thread Chuck Swiger
mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Mail Spool Problems / IMAP

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

Re: Mail Spool Problems / IMAP

2008-04-07 Thread Chuck Swiger
On Apr 7, 2008, at 5:49 PM, Chris Maness wrote: How do I check it? Should I use another IMAP server? Look at the first few lines; you should see either a placeholder message like: From MAILER-DAEMON Mon Apr 7 13:08:13 2008 Date: 07 Apr 2008 13:08:13 -0400 From: Mail System Internal Data

Re: Mail Spool Problems / IMAP

2008-04-07 Thread Chris Maness
:08:13 -0400 From: Mail System Internal Data [EMAIL PROTECTED] Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA Message-ID: [EMAIL PROTECTED] X-IMAP: 1143826475 000664 NonJunk $NotJunk JunkRecorded $Junk Junk Status: RO This text is part of the internal format of your mail folder

Re: Mail Spool Problems / IMAP

2008-04-07 Thread Chris Maness
/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Question regarding mail and dns server on Alix/Soekris?

2008-04-07 Thread David Duong
server as a FreeBSD NFS server. My question is, has anyone installed a mail + DNS server on a ALIX/Soekris PC? If so, is it able to handle the load? I'm currently subscribed to a lot of mailing lists (Linux kernel,FreeBSD, etc) Thanks everyone! -- David

mail question

2008-04-02 Thread GhoSt^ faCe
Hello, how can we have a pop mail with domain FreeBSD.org ? cheers ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: mail question

2008-04-02 Thread Giorgos Keramidas
On Wed, 2 Apr 2008 10:27:07 +0100, adminakos at gmail.com wrote: Hello, how can we have a pop mail with domain FreeBSD.org ? Yes, of course. All it takes is to show some committment to the cause, by consistently helping in one of the following areas: * Improving FreeBSD, by fixing existing

e-mail processing in C

2008-03-24 Thread Robert Huff
I need to write a quick and not-too-dirty C program to process some e-mail. (Including dealing with mbox files.) Is there a standard library to do this? Respectfully, Robert Huff ___ freebsd

Re: e-mail processing in C

2008-03-24 Thread Chuck Swiger
On Mar 24, 2008, at 11:32 AM, Robert Huff wrote: I need to write a quick and not-too-dirty C program to process some e-mail. (Including dealing with mbox files.) Is there a standard library to do this? You probably want to invoke formail, which is part of the mail/ procmail

Email processing in Python (was: e-mail processing in C)

2008-03-24 Thread Giorgos Keramidas
On Mon, 24 Mar 2008 14:32:02 -0400, Robert Huff [EMAIL PROTECTED] wrote: I need to write a quick and not-too-dirty C program to process some e-mail. (Including dealing with mbox files.) Is there a standard library to do this? Respectfully, No, there's no library for `email processing

Re: e-mail processing in C

2008-03-24 Thread Dan Nelson
In the last episode (Mar 24), Robert Huff said: I need to write a quick and not-too-dirty C program to process some e-mail. (Including dealing with mbox files.) Is there a standard library to do this? You can use the c-client library for this; it's what the pine email client

Re: Email processing in Python (was: e-mail processing in C)

2008-03-24 Thread Patrick C
Searching real quick shows the existence of both libmime and libmbox... don't know if they're maintained. Another option would be to dig out the associated code in pine, elm, or whatnot. See how they access mail. -Patrick On 24/03/2008, Giorgos Keramidas [EMAIL PROTECTED] wrote: On Mon, 24 Mar

Email processing in Python (was: e-mail processing in C)

2008-03-24 Thread Robert Huff
@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Email processing in Python (was: e-mail processing in C)

2008-03-24 Thread Erwan David
Le Mon 24/03/2008, Patrick C disait Searching real quick shows the existence of both libmime and libmbox... don't know if they're maintained. Another option would be to dig out the associated code in pine, elm, or whatnot. See how they access mail. -Patrick libPAN (or is it libEtPAN

Re: Email processing in Python (was: e-mail processing in C)

2008-03-24 Thread Jeffrey Goldberg
On Mar 24, 2008, at 2:04 PM, Patrick C wrote: Another option would be to dig out the associated code in pine, elm, or whatnot. See how they access mail. What is used in pine (now alpine) is the c-client libraries already mentioned in another post. -j -- Jeffrey Goldberg

[Mail Delivery System] Mail delivery failed: returning message to sender

2008-03-20 Thread Boris Samorodov
? No. So the purpose of the /linux/compat is...? Linux specific system commands? What about the procfs and devfs under here? Why separate those? If you want to learn more about linuxulator there is a freebsd-emulation@ mail list. Those and other questions are regularly discussed there. I'd advise you

Network identity for sending mail.

2008-03-16 Thread Malcolm Kay
The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than inderctly through an ISP mail service. I can certainly successfully send mail directly via sendmail but as I don't have a static IP address or a registered name the (bogus?) name used

Re: Network identity for sending mail.

2008-03-16 Thread Erik Trulsson
On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than inderctly through an ISP mail service. Does it not work if you configure sendmail to send via your ISP's mail server

Re: Network identity for sending mail.

2008-03-16 Thread Giorgos Keramidas
On 2008-03-16 18:17, Malcolm Kay [EMAIL PROTECTED] wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than inderctly through an ISP mail service. I can certainly successfully send mail directly via sendmail but as I don't have

Re: Network identity for sending mail.

2008-03-16 Thread Malcolm Kay
On Sun, 16 Mar 2008 06:46 pm, Erik Trulsson wrote: On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than inderctly through an ISP mail service. Does it not work if you

Re: Network identity for sending mail.

2008-03-16 Thread Erik Trulsson
On Mon, Mar 17, 2008 at 12:26:07AM +1030, Malcolm Kay wrote: On Sun, 16 Mar 2008 06:46 pm, Erik Trulsson wrote: On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than

Re: Network identity for sending mail.

2008-03-16 Thread Mel
On Sunday 16 March 2008 08:47:47 Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than inderctly through an ISP mail service. No. It assumes that the variable MAIL_AGENT in the environment is capable of sending

Re: Network identity for sending mail.

2008-03-16 Thread Giorgos Keramidas
On 2008-03-17 00:26, Malcolm Kay [EMAIL PROTECTED] wrote: On Sun, 16 Mar 2008 06:46 pm, Erik Trulsson wrote: On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent directly through sendmail or equivalent rather than

Re: Network identity for sending mail.

2008-03-16 Thread Malcolm Kay
On Mon, 17 Mar 2008 01:07 am, Erik Trulsson wrote: On Mon, Mar 17, 2008 at 12:26:07AM +1030, Malcolm Kay wrote: On Sun, 16 Mar 2008 06:46 pm, Erik Trulsson wrote: On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent

Re: Network identity for sending mail.

2008-03-16 Thread Malcolm Kay
On Mon, 17 Mar 2008 05:59 am, Giorgos Keramidas wrote: On 2008-03-17 00:26, Malcolm Kay [EMAIL PROTECTED] wrote: On Sun, 16 Mar 2008 06:46 pm, Erik Trulsson wrote: On Sun, Mar 16, 2008 at 06:17:47PM +1030, Malcolm Kay wrote: The send-pr appears to assume that mail can and will be sent

Re: Network identity for sending mail.

2008-03-16 Thread Giorgos Keramidas
On 2008-03-17 08:36, Malcolm Kay [EMAIL PROTECTED] wrote: On Mon, 17 Mar 2008 01:07 am, Erik Trulsson wrote: I do not use sendmail myself, so I am not sure of all the details, but go to /etc/mail/ and define SMART_HOST appropriately in the right .mc file. Read the Makefile

How specify an other mail directory for users?

2008-03-11 Thread Nicolas Letellier
Hello, In my FreeBSD 7.0 (with postfix), when a user receive an email, it is stocked in /var/mail$/USER. How change this? I would like mails be stocked in /var/mail/users/$USER. I don't find a file to change this. Is it a system conf, or a SMTP conf? Thanks. - Nicolas

Re: How specify an other mail directory for users?

2008-03-11 Thread Nicolas Letellier
Nicolas Letellier a écrit : Hello, In my FreeBSD 7.0 (with postfix), when a user receive an email, it is stocked in /var/mail$/USER. How change this? I would like mails be stocked in /var/mail/users/$USER. I don't find a file to change this. Is it a system conf, or a SMTP conf? Thanks

Re: Freebsd7, mail/mailman, www/apache22, and sendmail [take 2]

2008-03-10 Thread Matthew Seaman
Philip M. Gollucci wrote: /etc/mail/host.mc [snipped] define(`ALIAS_FILE', `/etc/mail/aliases,/etc/mail/lists') FEATURE(`smrsh') FEATURE(mailertable, `hash -o /etc/mail/mailertable') FEATURE(virtusertable, `hash -o /etc/mail/virtusertable') VIRTUSER_DOMAIN(`lists.domain.tld') dnl FEATURE

Re: Freebsd7, mail/mailman, www/apache22, and sendmail [take 2]

2008-03-10 Thread Philip M. Gollucci
the previous mail. I have no user accounts on lists.domain.tld; however, I do have user email accounts on domain.tld and otherdomains.tld Thanks for the help. -- Philip M. Gollucci ([EMAIL PROTECTED]) c:703.336.9354 Consultant

mail server from Windows to FreeBSD

2008-03-10 Thread Ivailo Bonev
Hello FreeBSDers, I have a Windows machine that get all e-mails, from few accounts, from different Internet providers. I want to setup FreeBSD machine that get all mails from accounts and remote and local users get their mails from that FreeBSD mail storage server. I don't own a domain or MX

Re: mail server from Windows to FreeBSD

2008-03-10 Thread Roland Smith
mail storage server. I don't own a domain or MX records. Ok. I read many docs in Intrernet, and now I have installed FreeBSD 7.0 RELEASE, with installed fetchmail port (to get mail from various accounts), Fetchmail is the right tool for the job. sendmail-sasl port, and dovecot for IMAP server

Re: mail server from Windows to FreeBSD

2008-03-10 Thread Gerard
from accounts and remote and local users get their mails from that FreeBSD mail storage server. I don't own a domain or MX records. Ok. I read many docs in Intrernet, and now I have installed FreeBSD 7.0 RELEASE, with installed fetchmail port (to get mail from various accounts

Re: mail server from Windows to FreeBSD

2008-03-10 Thread Roland Smith
On Mon, Mar 10, 2008 at 03:39:01PM -0400, Gerard wrote: And one last thing, how can deliver all mail messages from Outlook Express client from Windows machine to FreeBSD mail server machine? You can set the FreeBSD machine as the outgoing mail server in Outlook. But this might

Re: mail server from Windows to FreeBSD

2008-03-10 Thread Ezat - Ezatech
Hello Ivailo, This is possibly the best how to guide I have found which sets up postfix, dovecot, spamassassin, postfixadmin etc. Currently I have multiple domains which the mail server handles and they all have access either via webmail(Squirrelmail), IMAP pop. [1]http

Re: Freebsd7, mail/mailman, www/apache22, and sendmail [take 2]

2008-03-09 Thread Philip M. Gollucci
No comments, suggestions ? Philip M. Gollucci wrote: Issue: The www/apache22 integration seems to be fine; however, the sendmail integration isn't quite right. client computer: $ echo `uname -a` | mail -s `date` [EMAIL PROTECTED] Mail Server: /var/log/maillog m25JwCEk065018: m25JwCEl065018

Freebsd7, mail/mailman, www/apache22, and sendmail

2008-03-05 Thread Philip M. Gollucci
Issue: The www/apache22 integration seems to be fine; however, the sendmail integration isn't quite right. client computer: $ echo `uname -a` | mail -s `date` [EMAIL PROTECTED] Mail Server: /var/log/maillog m25JwCEk065018: m25JwCEl065018: DSN: unknown mailer error 255 m25JwCEl065018

p5-Mail-Tools-2.02 Seems To Break MailScanner

2008-02-28 Thread Tim Daneliuk
Has anyone else run into a problem with MailScanner failing to start up properly after p5-Mail-Tools gets upgraded to Version 2.02 ? I forced the port to go back to p5-Mail-Tools Version 1.77 and all is well. 'Just wondering if this should be submitted as a PR to the MailScanner maintainers

archiving all IMAP mail?

2008-02-14 Thread C Thala
I need to strictly archive all mail sent to me. For some time I've been using fetchmail/getmail from ports to suck down (every 5 minutes or so) the IMAP mail sent by my ISP and send it through procmail where I make a copy and then archive it (I also do my filtering into various mailboxes

Re: archiving all IMAP mail?

2008-02-14 Thread Jack Barnett
for the clients (runs multiply platforms) This setup works well, everything is auto-archived and also can get access to my mail from anyplace and it's the same. It scales well too, fairly secure and have once place to back up all my emails. C Thala wrote: I need to strictly archive all mail sent

Re: archiving all IMAP mail?

2008-02-14 Thread Wael Nasreddine
connect to the imap server. The imap server I use is courier-imap (has ssl which is nice) then use Thunderbird for the clients (runs multiply platforms) This setup works well, everything is auto-archived and also can get access to my mail from anyplace and it's the same. It scales well too

Re: archiving all IMAP mail?

2008-02-14 Thread C Thala
mean by local accounts. If I'm not mistaken from reading your reply, this implies one of two things: 1. That I have two IMAP servers, one where I get all my mail, and a second one where I push mail after I have filtered/archived it. The first one should only by used by fetchmail

Re: archiving all IMAP mail?

2008-02-14 Thread Wael Nasreddine
- procmail - filterarchive - imap Then my imap clients connect to the imap server. Please explain what you mean by local accounts. If I'm not mistaken from reading your reply, this implies one of two things: 1. That I have two IMAP servers, one where I get all my mail

Re: archiving all IMAP mail?

2008-02-14 Thread C Thala
On Thu, Feb 14, 2008 at 10:43:38AM +0100, Wael Nasreddine wrote: First I have postfix installed with sasl/mysql backend fetchmail spits the mail out to procmail which do all the filtering and deliver the email to /home/wael/.mail folder From the sound of it, it seems like you have control

Re: archiving all IMAP mail?

2008-02-14 Thread Wael Nasreddine
This One Time, at Band Camp, C Thala [EMAIL PROTECTED] said, On Thu, Feb 14, 2008 at 02:35:23PM -0500: On Thu, Feb 14, 2008 at 10:43:38AM +0100, Wael Nasreddine wrote: First I have postfix installed with sasl/mysql backend fetchmail spits the mail out to procmail which do all

Re: archiving all IMAP mail?

2008-02-14 Thread C Thala
, and copy it to various places ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: archiving all IMAP mail?

2008-02-14 Thread Wael Nasreddine
for courier-imap if forwarding then you're looking for a small procmail configuration. If neither are the case you're looking for then please expand your 1st e-mail, I couldn't understand what exactly you're looking for. -- Wael Nasreddine http://wael.nasreddine.com PGP: 1024D/C8DD18A2 06F6 1622

how can i save IMAP indexed mail via username?

2008-02-14 Thread Gary Kline
About two months ago my mail system fell apart and a thoughtful network fellow helped me re-organize things. Everything, including using a small server as a firewall. We set up three services on another box, that included using IMAP (with sendmail). IMAP indexes things on my mailserver

Re: archiving all IMAP mail?

2008-02-14 Thread Nick Rout
try imapsync, it will synchronise your mail to a local machine, which can be your backup, while leaving the mail on your provider's server for you to access via various clients. On Fri, Feb 15, 2008 at 11:13 AM, Wael Nasreddine [EMAIL PROTECTED] wrote: This One Time, at Band Camp, C Thala [EMAIL

Re: archiving all IMAP mail?

2008-02-14 Thread Jack Barnett
get all my mail, and a second one where I push mail after I have filtered/archived it. The first one should only by used by fetchmail, the second one is read by my various IMAP MUAs. 2. That I somehow have write access to the backend of my IMAP server, so I can

Re: mail checker for evo/kmail//mutt-IMAP

2008-02-07 Thread Daniel Bye
On Wed, Feb 06, 2008 at 06:18:22PM -0800, Gary Kline wrote: Can anybody point me to a mailbox checker that works from a desktop and watches (via network), the mail server? Until my re-org, xbiff was sufficient. But no mo'. I've just started using mail/mail-notification

probs with mail notifications

2008-02-07 Thread Gary Kline
Do I need to build the entire Gnome world or what? /usr/ports/mail/mail-notification (mail-notification:62023): mail-notification-WARNING **: unable to show popup: The name org.freedesktop.Notifications was not provided by any .service files zsh: command not found: play is what

mail checker for evo/kmail//mutt-IMAP

2008-02-06 Thread Gary Kline
Can anybody point me to a mailbox checker that works from a desktop and watches (via network), the mail server? Until my re-org, xbiff was sufficient. But no mo'. thanks for any suggestions, gary -- Gary Kline [EMAIL PROTECTED] www.thought.org

Re: suggested size of /var/mail

2008-01-29 Thread Alphons Fonz van Werven
/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: suggested size of /var/mail

2008-01-29 Thread Wojciech Puchar
create user/group for logs and use quotas. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: suggested size of /var/mail

2008-01-29 Thread doug
On Mon, 28 Jan 2008, Wojciech Puchar wrote: Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? while considered bad/dangerous/whatever i ALWAYS make only 2 partitions: swap and root and NEVER have problems how to size

Re: suggested size of /var/mail

2008-01-28 Thread Wojciech Puchar
Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? while considered bad/dangerous/whatever i ALWAYS make only 2 partitions: swap and root and NEVER have problems how to size a partitions

Re: suggested size of /var/mail

2008-01-28 Thread Byung-Hee HWANG
On Mon, 2008-01-28 at 13:56 +0800, FreeBSD Daemon wrote: Dear list, I am currently setting up a server which should include email service. Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? TIA for any related tips! i

Re: suggested size of /var/mail

2008-01-28 Thread Predrag Punosevac
Wojciech Puchar wrote: Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? Your question is too serious to be answered in an email but I give a try. First of all I would suggest that you read the pages 25-28 of the book

Re: suggested size of /var/mail

2008-01-28 Thread Alphons Fonz van Werven
D G Teed wrote: What sort of server is it - MX, apache, database server, Actually, it IS in the OP... OP has (or wants to have) a mail server and asks for suggestions regarding the mail spool size. Simple as that. Apache has nothing to do with it. Whether or not to have a seperate /usr/local

Re: suggested size of /var/mail

2008-01-28 Thread D G Teed
@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: suggested size of /var/mail

2008-01-28 Thread Jerry McAllister
On Mon, Jan 28, 2008 at 01:56:39PM +0800, FreeBSD Daemon wrote: Dear list, I am currently setting up a server which should include email service. Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? It depends totally

Re: suggested size of /var/mail

2008-01-28 Thread D G Teed
Teed wrote: What sort of server is it - MX, apache, database server, Actually, it IS in the OP... OP has (or wants to have) a mail server and asks for suggestions regarding the mail spool size. Simple as that. Apache has nothing to do with it. Whether or not to have a seperate /usr/local

Re: why am i sending mutt mail with my FQDN??

2008-01-27 Thread Gary Kline
the destination SMART_HOST mailserver) look into the access map: http://www.sendmail.org/m4/anti_spam.html#access_db ...or, failing that, enabling these with caution: accept_unresolvable_domains Normally, MAIL FROM: commands in the SMTP session will be refused

suggested size of /var/mail

2008-01-27 Thread FreeBSD Daemon
Dear list, I am currently setting up a server which should include email service. Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? TIA for any related tips! Zheyu ___ freebsd

Re: suggested size of /var/mail

2008-01-27 Thread Olivier Nicole
Hi, Are there any smart ways to decide how to size /var/mail. I plan to put it on a seperate partition ... or shouldn't I? How much mail storage do you plan to offer per user, how many users do you plan to have? Multiplp, add 50% margin and you have it. Olivier

Re: why am i sending mutt mail with my FQDN??

2008-01-26 Thread Giorgos Keramidas
Giorgos' $MAIL env variable; now that I switched to Baptiste's longer method:: same thing. mutt still prepends the hostname. The following I sent to myself, From: Gary Kline [EMAIL PROTECTED] Subject: testing To: Gary Kline [EMAIL PROTECTED], [EMAIL PROTECTED] it never reached me

Re: why am i sending mutt mail with my FQDN??

2008-01-26 Thread Chuck Swiger
that, enabling these with caution: accept_unresolvable_domains Normally, MAIL FROM: commands in the SMTP session will be refused if the host part of the argument to MAIL FROM: cannot be located in the host name service (e.g., an A or MX

why am i sending mutt mail with my FQDN??

2008-01-25 Thread Gary Kline
The problem with t rying to use mutt, even when I reach my mailserver on aristotle.thought.org, is that *somehow* -- I do not understand how -- but for some reason, mutt tacks on the FDQN rather than simply my domain name. I was using Giorgos' $MAIL env variable; now that I switched

Re: why am i sending mutt mail with my FQDN??

2008-01-25 Thread Gary Kline
/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: why am i sending mutt mail with my FQDN??

2008-01-25 Thread Chuck Swiger
-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Mutt and IMAP, evo and icons (was: mail questions: mutt and KDE)

2008-01-24 Thread Baptiste Grenier
Le 24/01/08 à 03:06, Gary Kline téléscripta : People, Hi, (...) I want to get mutt functional since most of my mailis ASCII or 8859-15. For friends who mail me URL's of pics, I use the GUI mail user agents. Is there a way me me, on desktops (FBSD and Ubuntu

mail questions: mutt and KDE

2008-01-23 Thread Gary Kline
People, Here's hopping that I'm still subscribed to the kde list, and that somebody can answer these general mail-type questions. Once I have Kmail working on my own domain, I'll be able to use that as a lifeline. Also, I would like some clues

Using mutt to access imap folders (was: mail questions: mutt and KDE)

2008-01-23 Thread Giorgos Keramidas
, Gary Kline [EMAIL PROTECTED] wrote: Here's hopping that I'm still subscribed to the kde list, and that somebody can answer these general mail-type questions. You don't have to be subscribed to freebsd-kde to post. Also, I would like some clues of how to if IF I can use mutt *with* IMAP. You can

Mail server questions

2008-01-21 Thread Zachary Welch
Hello to all, BSD newbie here, running 6.2 on a core 2 quad system I built. I'm Trying to get a secure mail server going and running into some snags: First things first - After installing postfix (which seems to work when testing) and cyrus-sasl2, I opted for the Maildir/ config

Re: Mail server questions

2008-01-21 Thread Chess Griffin
Zachary Welch wrote: Hello to all, BSD newbie here, running 6.2 on a core 2 quad system I built. I'm Trying to get a secure mail server going and running into some snags: First things first - After installing postfix (which seems to work when testing) and cyrus-sasl2, I opted

Re: Mail server questions

2008-01-21 Thread Gerard
On Mon, 21 Jan 2008 15:42:21 -0500 Zachary Welch [EMAIL PROTECTED] wrote: BSD newbie here, running 6.2 on a core 2 quad system I built. I'm Trying to get a secure mail server going and running into some snags: First things first - After installing postfix (which seems to work when

rsync and the mail spool?

2008-01-21 Thread Chris Maness
If I am cutting over a server, that has been created from a dump image of another server. Can I just rsync the mail spool to sync the mail at the time of cut over? Or will this cause problems? Chris ___ freebsd-questions@freebsd.org mailing list

Re: mail from: field question

2008-01-15 Thread Jim Bow
not appear in `env` - when sending mail from an su'd session, as opposed to an original root login, Yes, I think you've hit the nail on the head there. The actual thing Im trying to do is to email something from a script that runs as root from devd, but I run into the same problem of the email

visual php framework to handle FTP mail

2008-01-11 Thread bsd
Hello, I am using Freebsd as a mail server since a long time as an ISP. I have been configuring all my server using comand line and was very happy with that… But some of my clients are asking for a good visual interface that will allow them to manage their mail accounts themself

Re: mail from: field question

2008-01-10 Thread Jim Bow
Lowell Gilbert wrote: The answer will probably depend on the MTA you're using (which you didn't mention, so it's probably sendmail) You've guessed it. Its out-of-the-box sendmail. Run the script from the command line and in particular just call mail the way the script does. If I run

Re: mail from: field question

2008-01-10 Thread Mike Bristow
[ apologies to Jim Bow who gets this twice due to my fingers typing faster than my brain. ] On Thu, Jan 10, 2008 at 10:46:30AM +, Jim Bow wrote: If I run the script (or just send a mail) on the command line using sudo, then it's sent as me and not root. Same happens if I su to root first

Re: mail from: field question

2008-01-10 Thread Jim Bow
Mike Bristow wrote: On Thu, Jan 10, 2008 at 10:46:30AM +, Jim Bow wrote: If I run the script (or just send a mail) on the command line using sudo, then it's sent as me and not root. Same happens if I su to root first. use 'su -'. It means you get a login shell (which sets up

Re: mail from: field question

2008-01-10 Thread Paul Schmehl
--On Thursday, January 10, 2008 13:22:47 + Jim Bow [EMAIL PROTECTED] wrote: Mike Bristow wrote: On Thu, Jan 10, 2008 at 10:46:30AM +, Jim Bow wrote: If I run the script (or just send a mail) on the command line using sudo, then it's sent as me and not root. Same happens if I su

Re: mail from: field question

2008-01-10 Thread Jim Bow
give it a quick test to find out for sure. Thanks, Jim Bow ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: mail from: field question

2008-01-10 Thread Ian Smith
On Thu, 10 Jan 2008 13:22:47 + Jim Bow [EMAIL PROTECTED] wrote: Mike Bristow wrote: On Thu, Jan 10, 2008 at 10:46:30AM +, Jim Bow wrote: If I run the script (or just send a mail) on the command line using sudo, then it's sent as me and not root. Same happens if I su to root

Re: mail from: field question

2008-01-09 Thread Lowell Gilbert
Jim Bow [EMAIL PROTECTED] writes: I have a small shell script that does a backup to a usb drive and emails the results to a set of people. The script is triggered from devd (upon drive attachment) and runs as root. The problem is that the mail report is sent from an active system user

Re: outgoing mail STOPPED.

2008-01-08 Thread Gary Kline
-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

mail from: field question

2008-01-08 Thread Jim Bow
Hi all, I have a small shell script that does a backup to a usb drive and emails the results to a set of people. The script is triggered from devd (upon drive attachment) and runs as root. The problem is that the mail report is sent from an active system user and not user root. The user

courier mail server webadmin interface problem installed from ports

2008-01-08 Thread Thodoris
Hello list, I am facing a problem for quite a while now and it has to do with the courier mail server webadmin interface. I have installed a mail server using courier mail server and courier-authlib using authmysql to authenticate users. Although the service is configured working fine so

Re: outgoing mail STOPPED.

2008-01-08 Thread Gary Kline
it twice is that a long time ago I'd also added it to syslogd_flags manually, something I shall correct imminently. I have a script here that sends test mail to various servers on thought.org. I just caught this returned mail from qmail here. From this, it loooks as though

Re: outgoing mail STOPPED.

2008-01-07 Thread Gary Kline
://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

<    3   4   5   6   7   8   9   10   11   12   >