123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- (defvar gnus-original-article-buffer)
- (defvar mail-reply-buffer)
- (require 'sendmail)
- (defgroup uce nil
- "Facilitate reply to unsolicited commercial email."
- :prefix "uce-"
- :group 'mail)
- (defcustom uce-mail-reader 'rmail
- "A symbol indicating which mail reader you are using.
- Choose from: `gnus', `rmail'."
- :type '(choice (const gnus) (const rmail))
- :version "20.3"
- :group 'uce)
- (defcustom uce-setup-hook nil
- "Hook to run after UCE rant message is composed.
- This hook is run after `mail-setup-hook', which is run as well."
- :type 'hook
- :group 'uce)
- (defcustom uce-message-text
- "Recently, I have received an Unsolicited Commercial E-mail from you.
- I do not like UCE's and I would like to inform you that sending
- unsolicited messages to someone while he or she may have to pay for
- reading your message may be illegal. Anyway, it is highly annoying
- and not welcome by anyone. It is rude, after all.
- If you think that this is a good way to advertise your products or
- services you are mistaken. Spamming will only make people hate you, not
- buy from you.
- If you have any list of people you send unsolicited commercial emails to,
- REMOVE me from such list immediately. I suggest that you make this list
- just empty.
- ----------------------------------------------------
- If you are not an administrator of any site and still have received
- this message then your email address is being abused by some spammer.
- They fake your address in From: or Reply-To: header. In this case,
- you might want to show this message to your system administrator, and
- ask him/her to investigate this matter.
- Note to the postmaster(s): I append the text of UCE in question to
- this message; I would like to hear from you about action(s) taken.
- This message has been sent to postmasters at the host that is
- mentioned as original sender's host (I do realize that it may be
- faked, but I think that if your domain name is being abused this way
- you might want to learn about it, and take actions) and to the
- postmaster whose host was used as mail relay for this message. If
- message was sent not by your user, could you please compare time when
- this message was sent (use time in Received: field of the envelope
- rather than Date: field) with your sendmail logs and see what host was
- using your sendmail at this moment of time.
- Thank you."
- "This is the text that `uce-reply-to-uce' command will put in reply buffer.
- Some of spamming programs in use will be set up to read all incoming
- to spam address email, and will remove people who put the word `remove'
- on beginning of some line from the spamming list. So, when you set it
- up, it might be a good idea to actually use this feature.
- Value nil means insert no text by default, lets you type it in."
- :type '(choice (const nil) string)
- :group 'uce)
- (defcustom uce-uce-separator
- "----- original unsolicited commercial email follows -----"
- "Line that will begin quoting of the UCE.
- Value nil means use no separator."
- :type '(choice (const nil) string)
- :group 'uce)
- (defcustom uce-signature mail-signature
- "Text to put as your signature after the note to UCE sender.
- Value nil means none, t means insert `~/.signature' file (if it happens
- to exist), if this variable is a string this string will be inserted
- as your signature."
- :type '(choice (const nil) (const t) string)
- :group 'uce)
- (defcustom uce-default-headers
- "Errors-To: nobody@localhost\nPrecedence: bulk\n"
- "Additional headers to use when responding to a UCE with \\[uce-reply-to-uce].
- These are mostly meant for headers that prevent delivery errors reporting."
- :type '(choice (const nil) string)
- :group 'uce)
- (defcustom uce-subject-line
- "Spam alert: unsolicited commercial e-mail"
- "Subject of the message that will be sent in response to a UCE."
- :type 'string
- :group 'uce)
- (defvar rmail-buffer)
- (declare-function rmail-msg-is-pruned "rmail" ())
- (declare-function mail-strip-quoted-names "mail-utils" (address))
- (declare-function rmail-maybe-set-message-counters "rmail" ())
- (declare-function rmail-toggle-header "rmail" (&optional arg))
- (defun uce-reply-to-uce (&optional ignored)
- "Compose a reply to unsolicited commercial email (UCE).
- Sets up a reply buffer addressed to: the sender, his postmaster,
- his abuse@ address, and the postmaster of the mail relay used.
- You might need to set `uce-mail-reader' before using this."
- (interactive)
-
- (let ((message-buffer
- (cond ((eq uce-mail-reader 'gnus) gnus-original-article-buffer)
- ((eq uce-mail-reader 'rmail) (bound-and-true-p rmail-buffer))
- (t (error
- "Variable uce-mail-reader set to unrecognized value"))))
- pruned)
- (or (and message-buffer (get-buffer message-buffer))
- (error "No mail buffer, cannot find UCE"))
- (switch-to-buffer message-buffer)
-
-
- (and (eq uce-mail-reader 'rmail)
- (not (setq pruned (rmail-msg-is-pruned)))
- (rmail-toggle-header 1))
- (let ((to (mail-strip-quoted-names (mail-fetch-field "from" t)))
- (reply-to (mail-fetch-field "reply-to"))
- temp)
-
-
- (setq to (if to
- (format "%s" (mail-strip-quoted-names to))
- ""))
- (if reply-to
- (setq to (format "%s, %s" to (mail-strip-quoted-names reply-to))))
- (let (first-at-sign end-of-hostname sender-host)
- (setq first-at-sign (string-match "@" to)
- end-of-hostname (string-match "[ ,>]" to first-at-sign)
- sender-host (substring to first-at-sign end-of-hostname))
- (if (string-match "\\." sender-host)
- (setq to (format "%s, postmaster%s, abuse%s"
- to sender-host sender-host))))
- (setq mail-send-actions nil)
- (setq mail-reply-buffer nil)
- (when (eq uce-mail-reader 'rmail)
- (rmail-toggle-header 0)
- (rmail-maybe-set-message-counters))
- (copy-region-as-kill (point-min) (point-max))
-
- (and pruned (rmail-toggle-header 1))
- (switch-to-buffer "*mail*")
- (erase-buffer)
- (yank)
- (goto-char (point-min))
-
- (when (eq uce-mail-reader 'rmail)
- (search-forward "\n\n")
- (while (re-search-backward "^X-RMAIL" nil t)
- (delete-region (point) (line-beginning-position 2)))
- (goto-char (point-min)))
-
-
-
- (cond ((eq uce-mail-reader 'gnus)
-
- (re-search-forward "^Lines:")
- (beginning-of-line))
- ((eq uce-mail-reader 'rmail)
- (search-forward "\n\n")))
- (re-search-backward "^Received:")
-
-
-
- (unless (re-search-forward "\\(from\\|by\\) " (line-end-position) 'move)
- (if (looking-at "[ \t\n]+\\(from\\|by\\) ")
- (goto-char (match-end 0))
- (error "Failed to extract hub address")))
- (setq temp (point))
- (search-forward " ")
- (forward-char -1)
-
- (if (string-match "\\." (buffer-substring temp (point)))
- (setq to (format "%s, postmaster@%s"
- to (buffer-substring temp (point)))))
-
- (and (search-forward "\nMessage-Id: " nil t)
-
- (search-forward "@" (line-end-position) t)
- (progn
- (setq temp (point))
- (search-forward ">")
- (forward-char -1)
- (if (string-match "\\." (buffer-substring temp (point)))
- (setq to (format "%s, postmaster@%s"
- to (buffer-substring temp (point)))))))
- (when (eq uce-mail-reader 'gnus)
-
- (re-search-forward "^Lines:")
- (beginning-of-line)
- (setq temp (point))
- (search-forward "\n\n" nil t)
- (forward-line -1)
- (delete-region temp (point)))
-
- (auto-save-mode auto-save-default)
- (mail-mode)
- (goto-char (point-min))
- (insert "To: ")
- (save-excursion
- (if to
- (let ((fill-prefix "\t")
- (address-start (point)))
- (insert to "\n")
- (fill-region-as-paragraph address-start (point)))
- (newline))
- (insert "Subject: " uce-subject-line "\n")
- (if uce-default-headers
- (insert uce-default-headers))
- (if mail-default-headers
- (insert mail-default-headers))
- (if mail-default-reply-to
- (insert "Reply-to: " mail-default-reply-to "\n"))
- (insert mail-header-separator "\n")
-
- (if to (setq to (point)))
-
- (if uce-message-text
- (insert uce-message-text))
-
- (cond ((eq uce-signature t)
- (if (file-exists-p "~/.signature")
- (progn
- (insert "\n\n-- \n")
- (forward-char (cadr (insert-file-contents "~/.signature"))))))
- (uce-signature
- (insert "\n\n-- \n" uce-signature)))
-
- (if uce-uce-separator
- (insert "\n\n" uce-uce-separator "\n"))
-
- (goto-char (point-max))
- (or (bolp) (newline)))
-
- (if to (goto-char to))
- (or to (set-buffer-modified-p nil))
-
-
-
- (run-hooks 'mail-setup-hook 'uce-setup-hook))))
- (defun uce-insert-ranting (&optional ignored)
- "Insert text of the usual reply to UCE into current buffer."
- (interactive "P")
- (insert uce-message-text))
- (provide 'uce)
|