From owner-freebsd-questions Thu Aug 29 3:37:33 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 051DE37B400 for ; Thu, 29 Aug 2002 03:37:30 -0700 (PDT) Received: from cicero0.cybercity.dk (cicero0.cybercity.dk [212.242.40.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12EDD43E4A for ; Thu, 29 Aug 2002 03:37:29 -0700 (PDT) (envelope-from thrawn@linux.nu) Received: from user1.cybercity.dk (fxp0.user1.ip.cybercity.dk [212.242.41.34]) by cicero0.cybercity.dk (Postfix) with ESMTP id B0EDC102A2C; Thu, 29 Aug 2002 12:36:54 +0200 (CEST) Received: from webmail.netlink.se (webmail.cybercity.dk [212.242.40.37]) by user1.cybercity.dk (Postfix) with SMTP id 7C6B41DE; Thu, 29 Aug 2002 12:37:20 +0200 (CEST) Reply-To: thrawn@linux.nu From: thrawn@linux.nu (Mattias Björk) To: freebsd-questions@freebsd.org Subject: qmail + fetchmail + Maildir problem Date: Thu, 29 Aug 2002 12:37:20 +0200 Message-Id: <3d6df960afa446.75081248@not right> X-Authenticated-IP: [62.66.14.93] X-Sender: sfp1638@post.netlink.se X-Mailer: Cybercity Webmail 1.06 (http://webmail.cybercity.dk/) MIME-version: 1.0 Content-type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I have a problem getting my mail in ~/Maildir directory. I run qmail with mutt as my MTU.In ~/.qmail I have ./Maildir/. And my qmail startup script looks like this: #!/bin/sh # Using splogger to send the log through syslog. # Using qmail-local to deliver messages to Maildir format by default case "$1" in start) exec env - PATH="/var/qmail/bin:$PATH" \ qmail-start '|preline procmail' splogger qmail ./Maildir/ & # smtp daemon /usr/local/bin/tcpserver -u 82 -g 81 0 smtp /var/qmail/bin/qmail-smtpd & # pop3 daemon /usr/local/bin/tcpserver 0 pop3 /var/qmail/bin/qmail-popup thrawn.birch.se /bin/checkpassword /var/qmail/bin/qmail-pop3d Maildir & exit 0 ;; stop) exec killall -9 qmail-send tcpserver ;; *) echo "Usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac I have also procmail installed and fetchmail, I use fetchmail to get my mail from my ISP's email via pop3. I can see that it fetches the mail when I run fetchmail but it does not end up in ~/Maildir/{new,cur,tmp} so where does this go then? to /dev/null? because when i check in /var/mail there is nothing there either. And I don't get any error message when i fetch down the mail with fetchmail. How ever It might be a fetchmail problem only because when I mail from thrawn.birch.se to dasboot.birch.se it works perfect and also the other way around. My birch.se domain is only internal so it does not work on the outside. And Im using qmail as my MTA if you haven't understand that yet. :) I have also tryed this on servel machines using the same setup but its the same problem. I will check the fetchmail man page too see if I should do something special but I have used fetchmail before and it have worked without a hitch. Mvh Mattias Björk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message