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 /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
bcc_field.rb
2.01
KB
-rw-r--r--
cc_field.rb
1.67
KB
-rw-r--r--
comments_field.rb
1.26
KB
-rw-r--r--
content_description_field.rb
394
B
-rw-r--r--
content_disposition_field.rb
1.52
KB
-rw-r--r--
content_id_field.rb
1.1
KB
-rw-r--r--
content_location_field.rb
798
B
-rw-r--r--
content_transfer_encoding_fiel...
951
B
-rw-r--r--
content_type_field.rb
4.79
KB
-rw-r--r--
date_field.rb
1.59
KB
-rw-r--r--
from_field.rb
1.7
KB
-rw-r--r--
in_reply_to_field.rb
1.75
KB
-rw-r--r--
keywords_field.rb
850
B
-rw-r--r--
message_id_field.rb
2.3
KB
-rw-r--r--
mime_version_field.rb
939
B
-rw-r--r--
optional_field.rb
418
B
-rw-r--r--
received_field.rb
1.7
KB
-rw-r--r--
references_field.rb
1.74
KB
-rw-r--r--
reply_to_field.rb
1.79
KB
-rw-r--r--
resent_bcc_field.rb
1.84
KB
-rw-r--r--
resent_cc_field.rb
1.81
KB
-rw-r--r--
resent_date_field.rb
790
B
-rw-r--r--
resent_from_field.rb
1.86
KB
-rw-r--r--
resent_message_id_field.rb
680
B
-rw-r--r--
resent_sender_field.rb
1.85
KB
-rw-r--r--
resent_to_field.rb
1.81
KB
-rw-r--r--
return_path_field.rb
1.62
KB
-rw-r--r--
sender_field.rb
1.76
KB
-rw-r--r--
structured_field.rb
1.5
KB
-rw-r--r--
subject_field.rb
380
B
-rw-r--r--
to_field.rb
1.66
KB
-rw-r--r--
unstructured_field.rb
6.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : reply_to_field.rb
# encoding: utf-8 # frozen_string_literal: true # # = Reply-To Field # # The Reply-To field inherits reply-to StructuredField and handles the Reply-To: header # field in the email. # # Sending reply_to to a mail message will instantiate a Mail::Field object that # has a ReplyToField as its field type. This includes all Mail::CommonAddress # module instance metods. # # Only one Reply-To field can appear in a header, though it can have multiple # addresses and groups of addresses. # # == Examples: # # mail = Mail.new # mail.reply_to = 'Mikel Lindsaar <mikel@test.lindsaar.net>, ada@test.lindsaar.net' # mail.reply_to #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net'] # mail[:reply_to] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4 # mail['reply-to'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4 # mail['Reply-To'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4 # # mail[:reply_to].encoded #=> 'Reply-To: Mikel Lindsaar <mikel@test.lindsaar.net>, ada@test.lindsaar.net\r\n' # mail[:reply_to].decoded #=> 'Mikel Lindsaar <mikel@test.lindsaar.net>, ada@test.lindsaar.net' # mail[:reply_to].addresses #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net'] # mail[:reply_to].formatted #=> ['Mikel Lindsaar <mikel@test.lindsaar.net>', 'ada@test.lindsaar.net'] # require 'mail/fields/common/common_address' module Mail class ReplyToField < StructuredField include Mail::CommonAddress FIELD_NAME = 'reply-to' CAPITALIZED_FIELD = 'Reply-To' def initialize(value = nil, charset = 'utf-8') self.charset = charset super(CAPITALIZED_FIELD, value, charset) self end def encoded do_encode(CAPITALIZED_FIELD) end def decoded do_decode end end end
Close