From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Ludo Smissaert Newsgroups: gmane.emacs.help Subject: rmail and multiple email addresses Date: Thu, 07 Aug 2003 13:41:11 +0000 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: Reply-To: info@ludikidee.com NNTP-Posting-Host: deer.gmane.org X-Trace: main.gmane.org 1060264202 11280 80.91.224.253 (7 Aug 2003 13:50:02 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 7 Aug 2003 13:50:02 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 07 15:50:25 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19kl9t-0001W0-00 for ; Thu, 07 Aug 2003 15:50:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19kl1q-0008Bm-A1 for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Aug 2003 09:42:06 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19kl1Y-00085F-Bn for help-gnu-emacs@gnu.org; Thu, 07 Aug 2003 09:41:48 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19kl11-0007tQ-7t for help-gnu-emacs@gnu.org; Thu, 07 Aug 2003 09:41:47 -0400 Original-Received: from [194.159.73.1] (helo=post-20.mail.nl.demon.net) by monty-python.gnu.org with esmtp (Exim 4.20) id 19kl10-0007tL-Rl for help-gnu-emacs@gnu.org; Thu, 07 Aug 2003 09:41:14 -0400 Original-Received: from [212.238.74.1] (helo=jup.local.) by post-20.mail.nl.demon.net with esmtp (Exim 3.36 #1) id 19kl0x-0008rA-00 for help-gnu-emacs@gnu.org; Thu, 07 Aug 2003 13:41:11 +0000 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11642 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11642 Running: Emacs 21.1.1 on Mac OS X 10.6.2 (Jaguar) on OS X's Terminal. Hello list. I am new to emacs (three weeks now) and have set up RMAIL for my pop3 accounts, from the response I found: From: Ehud Karni Subject: Re: How do I set up rmail Date: Wed, 2 Apr 2003 22:49:35 +0300 Thanks for that so far. Before, I used multiple email addresses for diferent purposes, like: lists@my_account_name.com private@my_account_name.com I could also sent from either address. Questions: 1. How do I set up multiple email addresses in RMAIL? 2. How do I read the mail send to a specific address, e.g. only private mail and not lists? 3. Is it good to organize mail in this manner anyway? I have this in my .emacs: (setq rmail-primary-inbox-list '("po:account_name:pop3.server_name.com")) (setq rmail-pop-password-required t) and for sending: (load-library "smtpmail") (setq mail-default-reply-to "private@my_account_name.com") (setq mail-signature nil) (setq mail-personal-alias-file "~/.alias_file") (setq mail-aliases t) (setq mail-yank-prefix "> ") (add-hook 'mail-mode-hook 'mail-abbrevs-setup) (setq user-full-name "Full Name") (setq user-mail-address "private@my_account_name.com") (setq smtpmail-default-smtp-server "outgoing.mail.server") (setq smtpmail-smtp-server smtpmail-default-smtp-server) (setq smtpmail-local-domain nil) (setq send-mail-function 'smtpmail-send-it) (setq smtpmail-debug-info t) ;;smtpmail debug in *Messages* (setq mail-interactive 'wait)