Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
emacs /
27.1 /
lisp /
mail /
[ HOME SHELL ]
Name
Size
Permission
Action
binhex.elc
8.56
KB
-rw-r--r--
blessmail.el
2.5
KB
-rw-r--r--
emacsbug.elc
15
KB
-rw-r--r--
feedmail.elc
98.21
KB
-rw-r--r--
flow-fill.elc
3.15
KB
-rw-r--r--
footnote.elc
26.54
KB
-rw-r--r--
hashcash.elc
10.83
KB
-rw-r--r--
ietf-drums.elc
8.65
KB
-rw-r--r--
mail-extr.elc
32.53
KB
-rw-r--r--
mail-hist.elc
13.44
KB
-rw-r--r--
mail-parse.elc
2.3
KB
-rw-r--r--
mail-prsvr.elc
1.08
KB
-rw-r--r--
mail-utils.elc
10.13
KB
-rw-r--r--
mailabbrev.elc
14.4
KB
-rw-r--r--
mailalias.elc
14.49
KB
-rw-r--r--
mailclient.elc
4.13
KB
-rw-r--r--
mailheader.elc
5.54
KB
-rw-r--r--
metamail.elc
4.21
KB
-rw-r--r--
mspools.elc
8.74
KB
-rw-r--r--
qp.elc
4.14
KB
-rw-r--r--
reporter.elc
9
KB
-rw-r--r--
rfc2045.elc
826
B
-rw-r--r--
rfc2047.elc
24.87
KB
-rw-r--r--
rfc2231.elc
6.35
KB
-rw-r--r--
rfc2368.elc
2.32
KB
-rw-r--r--
rfc822.elc
5.45
KB
-rw-r--r--
rmail-loaddefs.el
7.79
KB
-rw-r--r--
rmail-spam-filter.elc
12.71
KB
-rw-r--r--
rmail.elc
124.13
KB
-rw-r--r--
rmailedit.elc
9.82
KB
-rw-r--r--
rmailkwd.elc
4.98
KB
-rw-r--r--
rmailmm.elc
41.24
KB
-rw-r--r--
rmailmsc.elc
1.34
KB
-rw-r--r--
rmailout.elc
17.84
KB
-rw-r--r--
rmailsort.elc
6.17
KB
-rw-r--r--
rmailsum.elc
54.29
KB
-rw-r--r--
sendmail.elc
53.92
KB
-rw-r--r--
smtpmail.elc
25.46
KB
-rw-r--r--
supercite.elc
57.29
KB
-rw-r--r--
uce.elc
7.54
KB
-rw-r--r--
undigest.elc
7.81
KB
-rw-r--r--
unrmail.elc
5.25
KB
-rw-r--r--
uudecode.elc
5.26
KB
-rw-r--r--
yenc.elc
3.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rfc2368.elc
;ELC ;;; Compiled ;;; in Emacs version 27.1 ;;; with all optimizations. ;;; This file uses dynamic docstrings, first added in Emacs 19.29. ;;; This file does not contain utf-8 non-ASCII characters, ;;; and so can be loaded in Emacs versions earlier than 23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; #@62 Regular expression to match and aid in parsing a mailto url. (defconst rfc2368-mailto-regexp "^\\(mailto:\\)\\([^?]+\\)?\\(\\?\\(.*\\)\\)*" (#$ . 408)) #@45 Describes the `mailto:' portion of the url. (defconst rfc2368-mailto-scheme-index 1 (#$ . 566)) #@61 Describes the portion of the url between `mailto:' and `?'. (defconst rfc2368-mailto-prequery-index 2 (#$ . 668)) #@45 Describes the portion of the url after `?'. (defconst rfc2368-mailto-query-index 4 (#$ . 788)) #@59 Unhexify STRING -- e.g. `hello%20there' -> `hello there'. (defalias 'rfc2368-unhexify-string #[(string) "\301\302\303\304\211%\207" [string replace-regexp-in-string "%[[:xdigit:]]\\{2\\}" #[(match) "\301\302\303\304\"\305\"!\207" [match string string-to-number substring 1 16] 5] t] 6 (#$ . 889)]) #@397 Parse MAILTO-URL, and return an alist of header-name, header-value pairs. MAILTO-URL should be a RFC 2368 (mailto) compliant url. A cons cell w/ a key of `Body' is a special case and is considered a header for this purpose. The returned alist is intended for use w/ the `compose-mail' interface. Note: make sure MAILTO-URL has been "unhtmlized" (e.g., & -> &), before calling this function. (defalias 'rfc2368-parse-mailto-url #[(mailto-url) "\306\307\211\211\310\311\312\f#\313 \f\"\203] \314\f\"\314\f\"\211\203- \315\316\317 \320\"\"\n\203Y \321\n!\322\323\"\203S \322\323\"\211A\n\324Q\241\210*\202Y \323\nBB\202` \325\326!,\207" [headers-alist query prequery case-fold-search mailto-url rfc2368-mailto-regexp t nil replace-regexp-in-string "\n" " " string-match match-string mapcar #[(x) "\304\305\"\211@ A@\306\307\n!!\307!+B\207" [x temp-list header-name header-value split-string "=" capitalize rfc2368-unhexify-string] 4] split-string "&" rfc2368-unhexify-string assoc "To" ", " error "Failed to match a mailto: url" rfc2368-mailto-prequery-index rfc2368-mailto-query-index our-cons-cell our-cdr] 6 (#$ . 1196)]) (provide 'rfc2368)
Close