From: okada Date: Wed, 23 Aug 2000 13:44:41 +0000 (+0000) Subject: * smtp.el (smtp-fqdn): New variable. X-Git-Tag: slim-1_14_2~2 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fflim.git;a=commitdiff_plain;h=9c4d56623323910c0f8eed8a2f6dc128705f6694 * smtp.el (smtp-fqdn): New variable. (smtp-make-fqdn): Use `smtp-fqdn' if non-nil. --- diff --git a/ChangeLog b/ChangeLog index d49c5eb..d42056b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ 2000-08-23 Kenichi OKADA - * smtp.el (smtp-system-name): New variable. - (smtp-make-fqdn): Use `smtp-system-name' if non-nil. + * smtp.el (smtp-fqdn): New variable. + (smtp-make-fqdn): Use `smtp-fqdn' if non-nil. 2000-08-23 Yuuichi Teranishi @@ -13,7 +13,7 @@ 2000-08-23 Kenichi OKADA * mime-def.el (mime-library-product): Up. - + * SLIM-VERSION: Up. 2000-08-12 Kenichi OKADA diff --git a/SLIM-VERSION b/SLIM-VERSION index 560d4c9..7e4eb26 100644 --- a/SLIM-VERSION +++ b/SLIM-VERSION @@ -11,3 +11,5 @@ 1.14.0 安倍なつみ 1.14.1 松田純 +1.14.2 加護亜依 + diff --git a/mime-def.el b/mime-def.el index 24c8244..fdc2e03 100644 --- a/mime-def.el +++ b/mime-def.el @@ -36,7 +36,7 @@ ) (eval-and-compile - (defconst mime-library-product ["SLIM" (1 14 2) "松田純"] + (defconst mime-library-product ["SLIM" (1 14 2) "加護亜依"] "Product name, version number and code name of MIME-library package.")) (defmacro mime-product-name (product) diff --git a/smtp.el b/smtp.el index 6281fc9..903671b 100644 --- a/smtp.el +++ b/smtp.el @@ -81,6 +81,11 @@ don't define this value." :type '(choice (const nil) string) :group 'smtp) +(defcustom smtp-fqdn nil + "*User's fully qualified domain name." + :type '(choice (const nil) string) + :group 'smtp) + (defcustom smtp-debug-info nil "*smtp debug info printout. messages and process buffer." :type 'boolean @@ -119,12 +124,14 @@ don't define this value." "Return user's fully qualified domain name." (let ((system-name (system-name))) (cond + (smtp-fqdn + smtp-fqdn) (smtp-local-domain (concat system-name "." smtp-local-domain)) ((string-match "[^.]\\.[^.]" system-name) system-name) (t - (error "Cannot generate valid FQDN. Set `smtp-local-domain' correctly."))))) + (error "Cannot generate valid FQDN. Set `smtp-fqdn' or `smtp-local-domain' correctly."))))) (defun smtp-via-smtp (sender recipients smtp-text-buffer) (let ((server (if (functionp smtp-server)