gfp <[email protected]> writes: >> >> gfp <[email protected]> writes: >> >>> this came up >>> and I tried to change that, but it didn´t help. >>> >>> ⛔ Warning (mail): The default mail mode is now Message mode. >>> You have the following Mail mode variables customized: >>> >>> mail-setup-hook mail-send-hook >>> >>> To use Mail mode, set ‘mail-user-agent’ to sendmail-user-agent. >>> To disable this warning, set ‘compose-mail-user-agent-warnings’ to nil. >> > > Hi, > > I changed the settings in "Mail user agent" > see screenshot > > and now bbdb works again. >
Setting the user option ‘mail-user-agent’ is (lightly) documented here: (info "(emacs) Mail Methods") Unfortunately, the user option ‘message-mail-user-agent’ is not documented in the Emacs user manual, the Gnus user manual, or the Message user manual. When you customized these two variables and saved them using the ‘Apply and Save’ button, then Emacs will have written a (custom-set-variables ...) expression to your Emacs initialization file. If you look in your Emacs initialization file, you should find them there. > I put that in my gnus.el: > > (setq send-mail-function 'smtpmail-send-it) > (setq message-send-mail-function 'smtpmail-send-it) > (setq smtpmail-default-smtp-server "smtp.yourProvider.net") Because these three variables are user options, each instance of ‘setq’ should be replaced with ‘setopt’ (see C-h f setopt). Or, you could delete them from your .gnus.el and customize them using the "Easy Customization", as you did for ‘mail-user-agent’ and ‘message-mail-user-agent’. If you do that, then Emacs will add your customizations to the (custom-set-variables ...) expression in your Emacs initialization file. -- The lyf so short, the craft so long to lerne. - Geoffrey Chaucer, The Parliament of Birds.
