Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Q: How do i change the headers the gnus Sends.
@ 2005-12-04 17:28 My Haz
  2005-12-04 17:31 ` My Haz
  2005-12-04 18:56 ` Reiner Steib
  0 siblings, 2 replies; 4+ messages in thread
From: My Haz @ 2005-12-04 17:28 UTC (permalink / raw)



I want change the "Sender: " header that gnus sends i tried

(sender "My Haz")

but that just adds a new header Orginal-Sender: 

this is what i have so far

(setq gnus-posting-styles
  '((".*"
     (name "My Haz")
     (sender "My Haz")
     (address "None@no.where")
     (organization "None At This Time")
     (signature-file "~/.sig"))))

i would like to change the real "Sender:" and also maybe something
about the message-id after the @ sig, i dunno, i would like to be able
to change these however.



-- 
~/~


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Q: How do i change the headers the gnus Sends.
  2005-12-04 17:28 Q: How do i change the headers the gnus Sends My Haz
@ 2005-12-04 17:31 ` My Haz
  2005-12-04 18:56 ` Reiner Steib
  1 sibling, 0 replies; 4+ messages in thread
From: My Haz @ 2005-12-04 17:31 UTC (permalink / raw)



see how it says

"""
Newsgroups: gnu.emacs.gnus
Subject: Q: How do i change the headers the gnus Sends.
From: My Haz <None@no.where>
Sender: cyh@ThEBoX  <---- want to change this 
Original-Sender: My Haz
Organization: None At This Time 
Message-ID: <86vey4bwis.fsf@no.where> <---- want to @no.where
Lines: 26
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 <----- maybe want to change this
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Complaints-To: abuse@easynews.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Sun, 04 Dec 2005 17:28:49 GMT
Xref: core-easynews gnu.emacs.gnus:70735
"""

Thanks for the help

Cheers
- Haz



-- 
~/~


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Q: How do i change the headers the gnus Sends.
  2005-12-04 17:28 Q: How do i change the headers the gnus Sends My Haz
  2005-12-04 17:31 ` My Haz
@ 2005-12-04 18:56 ` Reiner Steib
  2005-12-05  7:07   ` My Haz
  1 sibling, 1 reply; 4+ messages in thread
From: Reiner Steib @ 2005-12-04 18:56 UTC (permalink / raw)


On Sun, Dec 04 2005, My Haz wrote:

> I want change the "Sender: " header that gnus sends i tried
>
> (sender "My Haz")
>
> but that just adds a new header Orginal-Sender: 
>
> this is what i have so far
>
> (setq gnus-posting-styles
>   '((".*"
>      (name "My Haz")
>      (sender "My Haz")
>      (address "None@no.where")
>      (organization "None At This Time")
>      (signature-file "~/.sig"))))
>
> i would like to change the real "Sender:" 

(eval-after-load "message"
  '(add-to-list 'message-syntax-checks
		'(sender . disabled)))

This is the default in Gnus 5.10.

> and also maybe something about the message-id after the @ sig, i
> dunno, i would like to be able to change these however.

,----[ (info "(message)News Headers") ]
| `Message-ID'
|      This required header will be generated by Message.  A unique ID
|      will be created based on the date, time, user name (for the local
|      part) and the domain part.  For the domain part, message will look
|      (in this order) at `message-user-fqdn', `system-name',
|      `mail-host-address' and `message-user-mail-address' (i.e.
|      `user-mail-address') until a probably valid fully qualified domain
|      name (FQDN) was found.
`----

(`message-user-fqdn' doesn't exist in Gnus 5.9, though.)

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Q: How do i change the headers the gnus Sends.
  2005-12-04 18:56 ` Reiner Steib
@ 2005-12-05  7:07   ` My Haz
  0 siblings, 0 replies; 4+ messages in thread
From: My Haz @ 2005-12-05  7:07 UTC (permalink / raw)



Reiner Steib <reinersteib+from-uce@imap.cc> writes:

> On Sun, Dec 04 2005, My Haz wrote:
> 
> > I want change the "Sender: " header that gnus sends i tried
> >
> > (sender "My Haz")
> >
> > but that just adds a new header Orginal-Sender: 
> >
> > this is what i have so far
> >
> > (setq gnus-posting-styles
> >   '((".*"
> >      (name "My Haz")
> >      (sender "My Haz")
> >      (address "None@no.where")
> >      (organization "None At This Time")
> >      (signature-file "~/.sig"))))
> >
> > i would like to change the real "Sender:" 
> 
> (eval-after-load "message"
>   '(add-to-list 'message-syntax-checks
> 		'(sender . disabled)))
> 
> This is the default in Gnus 5.10.

This works well thanks.


Should i be running 5.10, this is the emacs that is up to date? In my
fbsd ports tree.


> > and also maybe something about the message-id after the @ sig, i
> > dunno, i would like to be able to change these however.
> 
> ,----[ (info "(message)News Headers") ]
> | `Message-ID'
> |      This required header will be generated by Message.  A unique ID
> |      will be created based on the date, time, user name (for the local
> |      part) and the domain part.  For the domain part, message will look
> |      (in this order) at `message-user-fqdn', `system-name',
> |      `mail-host-address' and `message-user-mail-address' (i.e.
> |      `user-mail-address') until a probably valid fully qualified domain
> |      name (FQDN) was found.
> `----
> 
> (`message-user-fqdn' doesn't exist in Gnus 5.9, though.)


I haven't tried this part yet, don't know hou go that pretty text
output either



-- 
~/~


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-12-05  7:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-04 17:28 Q: How do i change the headers the gnus Sends My Haz
2005-12-04 17:31 ` My Haz
2005-12-04 18:56 ` Reiner Steib
2005-12-05  7:07   ` My Haz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).