@@ -469,7 +469,7 @@ class MailboxQuotaRoot < Struct.new(:mailbox, :quotaroots)
469
469
# Net::IMAP#getacl returns an array of MailboxACLItem objects.
470
470
#
471
471
# ==== Required capability
472
- # +ACL+ - described in [ACL[https://tools.ietf .org/html /rfc4314]]
472
+ # +ACL+ - described in [ACL[https://www.rfc-editor .org/rfc /rfc4314]]
473
473
class MailboxACLItem < Struct . new ( :user , :rights , :mailbox )
474
474
##
475
475
# method: mailbox
@@ -565,11 +565,11 @@ class StatusData < Struct.new(:mailbox, :attr)
565
565
# [Note]
566
566
# When the #sender and #reply_to fields are absent or empty, they will
567
567
# return the same value as #from. Also, fields may return values that are
568
- # invalid for well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
568
+ # invalid for well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
569
569
# messages when the message is malformed or a draft message.
570
570
#
571
- # See [{IMAP4rev1 §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501.html #section-7.4.2]]
572
- # and [{IMAP4rev2 §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051.html #section-7.5.2]]
571
+ # See [{IMAP4rev1 §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501#section-7.4.2]]
572
+ # and [{IMAP4rev2 §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051#section-7.5.2]]
573
573
# for full description of the envelope fields, and
574
574
# Net::IMAP@Message+envelope+and+body+structure for other relevant RFCs.
575
575
#
@@ -583,7 +583,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
583
583
# Returns a string that represents the +Date+ header.
584
584
#
585
585
# [Note]
586
- # For a well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
586
+ # For a well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
587
587
# message, the #date field must not be +nil+. However it can be +nil+
588
588
# for a malformed or draft message.
589
589
@@ -609,7 +609,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
609
609
# returns +nil+ for this envelope field.
610
610
#
611
611
# [Note]
612
- # For a well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
612
+ # For a well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
613
613
# message, the #from field must not be +nil+. However it can be +nil+
614
614
# for a malformed or draft message.
615
615
@@ -622,7 +622,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
622
622
# [Note]
623
623
# If the <tt>Sender</tt> header is absent, or is present but empty, the
624
624
# server sets this field to be the same value as #from. Therefore, in a
625
- # well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]] message,
625
+ # well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] message,
626
626
# the #sender envelope field must not be +nil+. However it can be
627
627
# +nil+ for a malformed or draft message.
628
628
@@ -636,7 +636,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
636
636
# [Note]
637
637
# If the <tt>Reply-To</tt> header is absent, or is present but empty,
638
638
# the server sets this field to be the same value as #from. Therefore,
639
- # in a well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
639
+ # in a well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
640
640
# message, the #reply_to envelope field must not be +nil+. However it
641
641
# can be +nil+ for a malformed or draft message.
642
642
@@ -665,7 +665,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
665
665
# Returns a string that represents the <tt>In-Reply-To</tt> header.
666
666
#
667
667
# [Note]
668
- # For a well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
668
+ # For a well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
669
669
# message, the #in_reply_to field, if present, must not be empty. But
670
670
# it can still return an empty string for malformed messages.
671
671
#
@@ -681,7 +681,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
681
681
# Returns a string that represents the <tt>Message-ID</tt>.
682
682
#
683
683
# [Note]
684
- # For a well-formed [RFC5322[https://tools.ietf .org/html /rfc5322]]
684
+ # For a well-formed [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]
685
685
# message, the #message_id field, if present, must not be empty. But it
686
686
# can still return an empty string for malformed messages.
687
687
#
@@ -698,7 +698,7 @@ class Envelope < Struct.new(:date, :subject, :from, :sender, :reply_to,
698
698
# === Group syntax
699
699
#
700
700
# When the #host field is +nil+, this is a special form of address structure
701
- # that indicates the [RFC5322[https://tools.ietf .org/html /rfc5322]] group
701
+ # that indicates the [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] group
702
702
# syntax. If the #mailbox name field is also +nil+, this is an end-of-group
703
703
# marker (semicolon in RFC-822 syntax). If the #mailbox name field is
704
704
# non-+NIL+, this is the start of a group marker, and the mailbox #name
@@ -708,7 +708,7 @@ class Address < Struct.new(:name, :route, :mailbox, :host)
708
708
# method: name
709
709
# :call-seq: name -> string or nil
710
710
#
711
- # Returns the [RFC5322[https://tools.ietf .org/html /rfc5322]] address
711
+ # Returns the [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] address
712
712
# +display-name+ (or the mailbox +phrase+ in the RFC-822 grammar).
713
713
714
714
##
@@ -718,28 +718,28 @@ class Address < Struct.new(:name, :route, :mailbox, :host)
718
718
# Returns the route from RFC-822 route-addr.
719
719
#
720
720
# Note:: Generating this obsolete route addressing syntax is not allowed
721
- # by [RFC5322[https://tools.ietf .org/html /rfc5322]]. However,
721
+ # by [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]]. However,
722
722
# addresses with this syntax must still be accepted and parsed.
723
723
724
724
##
725
725
# method: mailbox
726
726
# :call-seq: mailbox -> string or nil
727
727
#
728
- # Returns the [RFC5322[https://tools.ietf .org/html /rfc5322]] address
728
+ # Returns the [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] address
729
729
# +local-part+, if #host is not +nil+.
730
730
#
731
731
# When #host is +nil+, this returns
732
- # an [RFC5322[https://tools.ietf .org/html /rfc5322]] group name and a +nil+
732
+ # an [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] group name and a +nil+
733
733
# mailbox indicates the end of a group.
734
734
735
735
##
736
736
# method: host
737
737
# :call-seq: host -> string or nil
738
738
#
739
- # Returns the [RFC5322[https://tools.ietf .org/html /rfc5322]] addr-spec
739
+ # Returns the [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] addr-spec
740
740
# +domain+ name.
741
741
#
742
- # +nil+ indicates [RFC5322[https://tools.ietf .org/html /rfc5322]] group
742
+ # +nil+ indicates [RFC5322[https://www.rfc-editor .org/rfc /rfc5322]] group
743
743
# syntax.
744
744
end
745
745
@@ -751,14 +751,14 @@ class ContentDisposition < Struct.new(:dsp_type, :param)
751
751
# :call-seq: dsp_type -> string
752
752
#
753
753
# Returns the content disposition type, as defined by
754
- # [DISPOSITION[https://tools.ietf .org/html /rfc2183]].
754
+ # [DISPOSITION[https://www.rfc-editor .org/rfc /rfc2183]].
755
755
756
756
##
757
757
# method: param
758
758
# :call-seq: param -> hash
759
759
#
760
760
# Returns a hash representing parameters of the Content-Disposition
761
- # field, as defined by [DISPOSITION[https://tools.ietf .org/html /rfc2183]].
761
+ # field, as defined by [DISPOSITION[https://www.rfc-editor .org/rfc /rfc2183]].
762
762
end
763
763
764
764
# Net::IMAP::ThreadMember represents a thread-node returned
@@ -797,8 +797,8 @@ def all_seqnos(node = self)
797
797
# FetchData#attr value. Although these classes don't share a base class,
798
798
# this module can be used to pattern match all of them.
799
799
#
800
- # See {[IMAP4rev1] §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501.html #section-7.4.2]
801
- # and {[IMAP4rev2] §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051.html #section-7.5.2-4.9]
800
+ # See {[IMAP4rev1] §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501#section-7.4.2]
801
+ # and {[IMAP4rev2] §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051#section-7.5.2-4.9]
802
802
# for full description of all +BODYSTRUCTURE+ fields, and also
803
803
# Net::IMAP@Message+envelope+and+body+structure for other relevant RFCs.
804
804
#
@@ -820,8 +820,8 @@ module BodyStructure
820
820
# message parts, unless they have a <tt>Content-Type</tt> that is handled by
821
821
# BodyTypeText, BodyTypeMessage, or BodyTypeMultipart.
822
822
#
823
- # See {[IMAP4rev1] §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501.html #section-7.4.2]
824
- # and {[IMAP4rev2] §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051.html #section-7.5.2-4.9]
823
+ # See {[IMAP4rev1] §7.4.2}[https://www.rfc-editor.org/rfc/rfc3501#section-7.4.2]
824
+ # and {[IMAP4rev2] §7.5.2}[https://www.rfc-editor.org/rfc/rfc9051#section-7.5.2-4.9]
825
825
# for full description of all +BODYSTRUCTURE+ fields, and also
826
826
# Net::IMAP@Message+envelope+and+body+structure for other relevant RFCs.
827
827
#
@@ -838,45 +838,45 @@ class BodyTypeBasic < Struct.new(:media_type, :subtype,
838
838
# :call-seq: media_type -> string
839
839
#
840
840
# The top-level media type as defined in
841
- # [MIME-IMB[https://tools.ietf .org/html /rfc2045]].
841
+ # [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]].
842
842
843
843
##
844
844
# method: subtype
845
845
# :call-seq: subtype -> string
846
846
#
847
847
# The media subtype name as defined in
848
- # [MIME-IMB[https://tools.ietf .org/html /rfc2045]].
848
+ # [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]].
849
849
850
850
##
851
851
# method: param
852
852
# :call-seq: param -> string
853
853
#
854
854
# Returns a hash that represents parameters as defined in
855
- # [MIME-IMB[https://tools.ietf .org/html /rfc2045]].
855
+ # [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]].
856
856
857
857
##
858
858
# method: content_id
859
859
# :call-seq: content_id -> string
860
860
#
861
861
# Returns a string giving the content id as defined
862
- # in [MIME-IMB[https://tools.ietf .org/html /rfc2045]]
863
- # {§7}[https://tools.ietf .org/html /rfc2045#section-7].
862
+ # in [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]]
863
+ # {§7}[https://www.rfc-editor .org/rfc /rfc2045#section-7].
864
864
865
865
##
866
866
# method: description
867
867
# :call-seq: description -> string
868
868
#
869
869
# Returns a string giving the content description as defined
870
- # in [MIME-IMB[https://tools.ietf .org/html /rfc2045]]
871
- # {§8}[https://tools.ietf .org/html /rfc2045#section-8].
870
+ # in [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]]
871
+ # {§8}[https://www.rfc-editor .org/rfc /rfc2045#section-8].
872
872
873
873
##
874
874
# method: encoding
875
875
# :call-seq: encoding -> string
876
876
#
877
877
# Returns a string giving the content transfer encoding as defined
878
- # in [MIME-IMB[https://tools.ietf .org/html /rfc2045]]
879
- # {§6}[https://tools.ietf .org/html /rfc2045#section-6].
878
+ # in [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]]
879
+ # {§6}[https://www.rfc-editor .org/rfc /rfc2045#section-6].
880
880
881
881
##
882
882
# method: size
@@ -889,15 +889,15 @@ class BodyTypeBasic < Struct.new(:media_type, :subtype,
889
889
# :call-seq: md5 -> string
890
890
#
891
891
# Returns a string giving the body MD5 value as defined in
892
- # [MD5[https://tools.ietf .org/html /rfc1864]].
892
+ # [MD5[https://www.rfc-editor .org/rfc /rfc1864]].
893
893
894
894
##
895
895
# method: disposition
896
896
# :call-seq: disposition -> ContentDisposition
897
897
#
898
898
# Returns a ContentDisposition object giving the content
899
899
# disposition, as defined by
900
- # [DISPOSITION[https://tools.ietf .org/html /rfc2183]].
900
+ # [DISPOSITION[https://www.rfc-editor .org/rfc /rfc2183]].
901
901
902
902
##
903
903
# method: language
@@ -1065,7 +1065,7 @@ class BodyTypeMultipart < Struct.new(:media_type, :subtype,
1065
1065
# call-seq: subtype -> string
1066
1066
#
1067
1067
# Returns the content subtype name
1068
- # as defined in [MIME-IMB[https://tools.ietf .org/html /rfc2045]].
1068
+ # as defined in [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]].
1069
1069
1070
1070
##
1071
1071
# method: parts
@@ -1079,7 +1079,7 @@ class BodyTypeMultipart < Struct.new(:media_type, :subtype,
1079
1079
# call-seq: param -> hash
1080
1080
#
1081
1081
# Returns a hash that represents parameters
1082
- # as defined in [MIME-IMB[https://tools.ietf .org/html /rfc2045]].
1082
+ # as defined in [MIME-IMB[https://www.rfc-editor .org/rfc /rfc2045]].
1083
1083
1084
1084
##
1085
1085
# method: disposition
0 commit comments