summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen'ichi Fukamachi <fukachan@fml.org>2018-09-07 22:46:52 +0900
committerKen'ichi Fukamachi <fukachan@fml.org>2018-09-08 12:49:20 +0900
commitc60c819afb9c6bbab3b02ebe12b6103394c00343 (patch)
tree83d3220004575a915f0675935823cc53cc636ad9
parent4a022ce98a47c58a3b7804a1ec29ce526787d235 (diff)
downloadfml8-c60c819afb9c6bbab3b02ebe12b6103394c00343.tar.gz
fml8-c60c819afb9c6bbab3b02ebe12b6103394c00343.tar.bz2
fml8-c60c819afb9c6bbab3b02ebe12b6103394c00343.zip
remove base64() and qp().
-rw-r--r--fml/lib/Mail/Message/Encode.pm35
1 files changed, 0 insertions, 35 deletions
diff --git a/fml/lib/Mail/Message/Encode.pm b/fml/lib/Mail/Message/Encode.pm
index c21363a8..5f17af32 100644
--- a/fml/lib/Mail/Message/Encode.pm
+++ b/fml/lib/Mail/Message/Encode.pm
@@ -428,41 +428,6 @@ sub encode_mime_string
}
-=head2 base64($str, $out_code, $in_code)
-
-encode $str by base64 with out code out_code.
-$in_code is use as a hint.
-
-=head2 qp($str, $out_code, $in_code)
-
-encode $str by quoted-printable with out code out_code.
-$in_code is use as a hint.
-
-=cut
-
-
-# Descriptions: encode $str by base64.
-# Arguments: OBJ($self) STR($str) STR($out_code) STR($in_code)
-# Side Effects: none
-# Return Value: STR
-sub base64
-{
- my ($self, $str, $out_code, $in_code) = @_;
- $self->encode_mime_string($str, 'base64', $out_code, $in_code);
-}
-
-
-# Descriptions: encode $str by quoted-printable.
-# Arguments: OBJ($self) STR($str) STR($out_code) STR($in_code)
-# Side Effects: none
-# Return Value: STR
-sub qp
-{
- my ($self, $str, $out_code, $in_code) = @_;
- $self->encode_mime_string($str, 'qp', $out_code, $in_code);
-}
-
-
=head2 decode_mime_string(string, [$options])
decode a base64/quoted-printable encoded string to a plain message.