Re: how to get confirmation that mail was sent correctly

2007-07-25 Thread Sivaram Neelakantan
Guenter Wolpert [EMAIL PROTECTED] writes:

 Hello,

 I'm using GNUS 5.9.0 for reading news and (mainly) for my e-mail.
 The mail system uses a POP server that used to be a dial-up
 conenction, no its a DSL router.
 What I'm currently missing is a feature to
 a) cause an acknowledgement when the mail was read by the recipient


Is this what you're looking for?  In a mail buffer, in the header
lines if you
--8---cut here---start-8---
C-c M-n runs the command message-insert-disposition-notification-to
  which is an interactive compiled Lisp function in `message.el'.
It is bound to C-c M-n, menu-bar Field Request Receipt.
(message-insert-disposition-notification-to)

Request a disposition notification (return receipt) to this message.
Note that this should not be used in newsgroups.
--8---cut here---end---8---



 b) trace the mail as it is transferred from server to server.
 Both features are available in usual mail programs and I guess,
 GNUS can do also.

Please, can you explain this a little more?  I was under the
impression the mail one *receives* has the path traversal in the
headers. 



 One more thing: Receiving a lot of spam, including completely empty
 mails, I wonder, whether GNUS responds to the above mentioned (a)
 acknowledge feature and how I can control this.

No idea here.

[...]



 sivaram
 -- 



___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Newbies questions

2007-07-25 Thread someusernamehere
Here are some newbies questions about Gnus:

* How I can receive messages each X time?

* It's possible that Gnus play a sound with a mail arrive?

* How I can send a new message in some newsgroup? (for mail I use M-x
gnus-msg-mail RET)


thanks

___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Gnus choosing to render text/html part of message

2007-07-25 Thread Jerry Sievers
Hello.  

With gnus-ignored-mime-types set to text/html,  the article buffer is
still rendering the html part instead of text/plain  part of messages
with the 2 mime alternates. 

If there's a setting  to make text/plain be preferred, I've not
discovered it yet. 

Gnus V5.9.0

Thanks 

-- 
---
Jerry Sievers   732 365-2844 (work) Production Database Administrator
305 321-1144 (mobil WWW E-Commerce Consultant
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Newbies questions

2007-07-25 Thread someusernamehere
On Jul 25, 1:24 pm, Karl Kleinpaste [EMAIL PROTECTED] wrote:
 someusernamehere [EMAIL PROTECTED] writes:
  Here are some newbies questions about Gnus:

 You really need to get used to reading the manual.  Nearly all of what
 you want can be found there.

  * How I can receive messages each X time?

 info://Gnus/Daemons

 My use of this:
 a. Scan for mail every 5min, regardless of current activity.
 b. Scan for new news every 20min, if I've left Gnus idle for 20min.

 ;;
 ;; level 2: only mail groups are scanned.
 (defun gnus-demon-scan-mail-and-update ()
 Scan for new mail, updating the *Group* buffer.
   (gnus-demon-scan-mail-or-news-and-update 2))
 (gnus-demon-add-handler 'gnus-demon-scan-mail-and-update 5 nil)
 ;;
 ;; level 3: mail and local news groups are scanned.
 (defun gnus-demon-scan-news-and-update ()
 Scan for new mail, updating the *Group* buffer.
   (gnus-demon-scan-mail-or-news-and-update 3))
 (gnus-demon-add-handler 'gnus-demon-scan-news-and-update 20 20)



 simply this doesn't work for me, I have setup the mail with level
2 and news
with level 3 and pasted these lines in my .gnus.el but my gnus dont
scan for new mail
never :-(

___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Gnus choosing to render text/html part of message

2007-07-25 Thread Reiner Steib
On Wed, Jul 25 2007, Jerry Sievers wrote:

 With gnus-ignored-mime-types set to text/html,  the article buffer is
 still rendering the html part instead of text/plain  part of messages
 with the 2 mime alternates. 

 If there's a setting  to make text/plain be preferred, I've not
 discovered it yet.

See `mm-discouraged-alternatives' in
(info (emacs-mime)Display Customization) == Press C-x C-e here! 

 Gnus V5.9.0

Please upgrade.  I'd suggest to upgrade to Emacs 22.1 which includes
Gnus 5.11.  If that's not possible, please upgrade to Gnus 5.10.8.

I'm not sure if `mm-discouraged-alternatives' is available in 5.9.

Bye, Reiner.
-- 
   ,,,
  (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Fixed

2007-07-25 Thread Ross A. Laird
Well, I have fixed the problem without really knowing what caused it. I
shut down gnus and emacs, deleted everything in ~/gnus, and started up
again. Now everything works as expected (so far).

Ross
-- 
Ross A. Laird, PhD
www.rosslaird.info





___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Newbies questions

2007-07-25 Thread someusernamehere
On Jul 25, 6:59 pm, Karl Kleinpaste [EMAIL PROTECTED] wrote:
 someusernamehere [EMAIL PROTECTED] writes:
   simply this doesn't work for me, I have setup the mail with
  level 2 and news with level 3 and pasted these lines in my .gnus.el
  but my gnus dont scan for new mail never

 Well, objectively, it does work.  I've been using those capabilities
 for a decade or more.

 Did you restart Gnus, in order that .gnus.el would be re-evaluated?
 If you did restart Gnus, what happened after 5min?  There won't be any
 big announcement by Gnus -- it will just abruptly go off to check for
 mail without any advance confirmation or preparation.


I know what is the problem, is needed initialize gnus-demon-init
manually, I dont know why
manually, so I have this in my .emacs but doesnt work

(setq gnus-use-demon t)
(gnus-demon-init)
(gnus-compile)

if I initialize manually ( M-x gnus-demon-init RET ) all works OK.

:-/

help

___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Newbies questions

2007-07-25 Thread Karl Kleinpaste
someusernamehere [EMAIL PROTECTED] writes:
 Thanks, but, where I define theses levels (2 and 3) for mail and news?

The last time you asked questions, I told you about level assignments
for groups.  Use `S l' in *Group* to define the level number of your
groups.  Put mail groups on level 1 or 2.  (I use 1 for personal
[therefore important] mail groups, and 2 for mailing lists and so
forth.)  Default level for newly-subscribed groups is 3, I believe.

Every time I respond to questions such as yours, I pepper my response
heavily with references to the manual.  Use those references.  It's
fine to ask questions; it's not fine to ask questions whose answers
you've already got, if only you'll look around yourself for them.
When you find a concept referenced that you don't immediately
recognize, at least look through the manual's index for it.

info://Gnus/Group+Levels
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: how to get confirmation that mail was sent correctly

2007-07-25 Thread Reiner Steib
On Wed, Jul 25 2007, Exal de Jesus Garcia Carrillo wrote:

 Guenter Wolpert [EMAIL PROTECTED] writes:
 I'm using GNUS 5.9.0 for reading news and (mainly) for my e-mail.

Please upgrade.  I'd suggest to upgrade to Emacs 22.1 which includes
Gnus 5.11.  If that's not possible, please upgrade to Gnus 5.10.8.

 One more thing: Receiving a lot of spam, including completely empty
 mails, I wonder, whether GNUS responds to the above mentioned (a)
 acknowledge feature and how I can control this.
[...]
 http://www.gnu.org/software/emacs/manual/html_node/gnus/Spam-Package.html#Spam-Package

Not available in Gnus 5.9.  See Improved anti-spam features. in
(info (gnus)Oort Gnus).

On Wed, Jul 25 2007, Sivaram Neelakantan wrote:
 C-c M-n runs the command message-insert-disposition-notification-to

Same here: (info (gnus)Oort Gnus).

Bye, Reiner.
-- 
   ,,,
  (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/
___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english


Two accounts on the same IMAP server

2007-07-25 Thread Leo
Dear all,

Now I run into a problem as I was given a second account on a imap
server. They serve different purposes so that forward emails from one to
another is not desirable.

Now If I send an email when in nnimap+Account2, it fails with error:

,
| 550 Sender address user2 does not match authenticated user user1
`

Any ideas? Or is this a bug?

My config is as follows:

(setq gnus-select-method '(nntp news.gmane.org)
  gnus-secondary-select-methods
  '((nnml )
(nnimap Account1
(nnimap-server-address imap.example.com)
(nnimap-stream ssl)
(nnir-search-engine imap))
(nnimap Account2
(nnimap-server-address imap.example.com)
(nnimap-stream ssl)
(nnir-search-engine imap

(setq gnus-posting-styles
  '((^nnimap\\+Account1
 (name User1)
 (address [EMAIL PROTECTED]))
(^nnimap\\+Account2
 (name User2)
 (address [EMAIL PROTECTED]

,[ .authinfo ]
| machine Account1 login user1 password x
| machine hermes login user2 password x
| machine smtp.example.com login user1 password x
`

-- 
Leo sdl.web AT gmail.com (GPG Key: 9283AA3F)



___
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english