From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/1343 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.gnus.user Subject: Re: Hide recipients addresses of a mail Date: Tue, 15 Oct 2002 16:16:22 +0100 Organization: None Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138668132 10885 80.91.229.2 (31 Jan 2006 00:42:12 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:42:12 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:29:00 2006 Original-Path: quimby.gnus.org!lackawana.kippona.com!newsfeed.media.kyoto-u.ac.jp!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.icl.net!newsfeed.fjserv.net!colt.net!newspeer.clara.net!news.clara.net!peer.news.eu-x.com!server2.netnews.ja.net!pegasus.csx.cam.ac.uk!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: xpc21.ast.cam.ac.uk X-Attribution: GM Mail-Copies-To: never Cancel-Lock: sha1:6DndPCMPnI+iqymUW7W1j4kVObs= User-Agent: Gnus, GNU Emacs (www.gnu.org/directory/emacs.html) Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:1483 Original-Lines: 35 X-Gnus-Article-Number: 1483 Tue Jan 17 17:29:00 2006 Xref: news.gmane.org gmane.emacs.gnus.user:1343 Archived-At: Julien Barnier wrote: > I guess this question must already have been posted, but I can't > manage to find anything interesting in the archives. I think this thread http://groups.google.co.uk/groups?selm=yeb4resysb1.fsf%40xpc21.ast.cam.ac.uk on gnu.emacs.help might help you (it was me asking the same question not so long ago!). > My question is : is there a function in Gnus which could allow to hide > the list of the recipients of a mail message, /ie/ which could replace > the content of the "To:" field by something else such as "undisclosed > recipients" when the mail is sent ? > > I know I could do something like that using Bcc:... You mean that you want to put the actual addresses in the BCC field, then just have some descriptive string in the To field, yes? If so, I think the short answer to your question is: (setq send-mail-function 'smtpmail-send-it message-send-mail-function 'smtpmail-send-it smtpmail-default-smtp-server "your.mail.server.machine" mail-use-rfc822 t) Then you can use strings like: To: undisclosed recipients:; BCC: real1@address.com, ... (note the closing ":;") in the To: field.