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.20
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 /
obsolete /
[ HOME SHELL ]
Name
Size
Permission
Action
abbrevlist.elc
1.27
KB
-rw-r--r--
assoc.elc
4.12
KB
-rw-r--r--
bruce.elc
1.48
KB
-rw-r--r--
cc-compat.elc
2.75
KB
-rw-r--r--
cl-compat.elc
3.81
KB
-rw-r--r--
cl.elc
14.81
KB
-rw-r--r--
complete.elc
24.19
KB
-rw-r--r--
crisp.elc
11.09
KB
-rw-r--r--
cust-print.elc
12.32
KB
-rw-r--r--
erc-hecomplete.elc
8.6
KB
-rw-r--r--
eudcb-ph.elc
5.87
KB
-rw-r--r--
fast-lock.elc
16.69
KB
-rw-r--r--
gs.elc
3.76
KB
-rw-r--r--
gulp.elc
4.59
KB
-rw-r--r--
html2text.elc
9.77
KB
-rw-r--r--
info-edit.elc
4.45
KB
-rw-r--r--
iswitchb.elc
31.64
KB
-rw-r--r--
landmark.elc
41.62
KB
-rw-r--r--
lazy-lock.elc
24.11
KB
-rw-r--r--
ledit.elc
4.44
KB
-rw-r--r--
levents.elc
9.27
KB
-rw-r--r--
lmenu.elc
10.96
KB
-rw-r--r--
longlines.elc
15.21
KB
-rw-r--r--
lucid.elc
5.2
KB
-rw-r--r--
mailpost.elc
2.11
KB
-rw-r--r--
mantemp.elc
3.61
KB
-rw-r--r--
meese.elc
833
B
-rw-r--r--
messcompat.el
1.73
KB
-rw-r--r--
mouse-sel.elc
20.17
KB
-rw-r--r--
old-emacs-lock.elc
2.59
KB
-rw-r--r--
old-whitespace.elc
22.78
KB
-rw-r--r--
otodo-mode.elc
23.86
KB
-rw-r--r--
patcomp.elc
988
B
-rw-r--r--
pc-mode.elc
1.3
KB
-rw-r--r--
pc-select.elc
12.86
KB
-rw-r--r--
pgg-def.elc
2.24
KB
-rw-r--r--
pgg-gpg.elc
12.72
KB
-rw-r--r--
pgg-parse.elc
12.87
KB
-rw-r--r--
pgg-pgp.elc
7.42
KB
-rw-r--r--
pgg-pgp5.elc
7.34
KB
-rw-r--r--
pgg.elc
18.98
KB
-rw-r--r--
rcompile.elc
3.01
KB
-rw-r--r--
s-region.elc
3.08
KB
-rw-r--r--
sregex.elc
12.15
KB
-rw-r--r--
starttls.elc
6.03
KB
-rw-r--r--
sup-mouse.elc
3.98
KB
-rw-r--r--
terminal.elc
30.36
KB
-rw-r--r--
tls.elc
7.29
KB
-rw-r--r--
tpu-edt.elc
59.59
KB
-rw-r--r--
tpu-extras.elc
11.88
KB
-rw-r--r--
tpu-mapper.elc
10.33
KB
-rw-r--r--
url-ns.elc
2.16
KB
-rw-r--r--
vc-arch.elc
17.65
KB
-rw-r--r--
vi.elc
47.89
KB
-rw-r--r--
vip.elc
76.49
KB
-rw-r--r--
ws-mode.elc
24.11
KB
-rw-r--r--
yow.elc
2.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : messcompat.el
;;; messcompat.el --- making message mode compatible with mail mode ;; Copyright (C) 1996-2020 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> ;; Keywords: mail, news ;; Obsolete-since: 26.1 ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: ;; This file tries to provide backward compatibility with sendmail.el ;; for Message mode. It should be used by simply adding ;; ;; (require 'messcompat) ;; ;; to the .emacs file. Loading it after Message mode has been ;; loaded will have no effect. ;;; Code: (require 'sendmail) ;(setq message-from-style mail-from-style) ;(setq message-interactive mail-interactive) (setq message-setup-hook mail-setup-hook) (setq message-mode-hook mail-mode-hook) ;(setq message-indentation-spaces mail-indentation-spaces) ;(setq message-signature mail-signature) ;(setq message-signature-file mail-signature-file) (setq message-default-headers mail-default-headers) (setq message-send-hook mail-send-hook) (setq message-send-mail-function send-mail-function) (provide 'messcompat) ;;; messcompat.el ends here ;; Local Variables: ;; no-byte-compile: t ;; End:
Close