@@ -253,7 +253,7 @@ class PHPMailer
253253 * You can set your own, but it must be in the format "<id@domain>",
254254 * as defined in RFC5322 section 3.6.4 or it will be ignored.
255255 *
256- * @see https://tools.ietf .org/html /rfc5322#section-3.6.4
256+ * @see https://www.rfc-editor .org/rfc /rfc5322#section-3.6.4
257257 *
258258 * @var string
259259 */
@@ -387,7 +387,7 @@ class PHPMailer
387387 * 'DELAY' will notify you if there is an unusual delay in delivery, but the actual
388388 * delivery's outcome (success or failure) is not yet decided.
389389 *
390- * @see https://tools.ietf .org/html /rfc3461 See section 4.1 for more information about NOTIFY
390+ * @see https://www.rfc-editor .org/rfc /rfc3461.html# section- 4.1 for more information about NOTIFY
391391 */
392392 public $ dsn = '' ;
393393
@@ -756,7 +756,7 @@ class PHPMailer
756756 *
757757 * @var string
758758 */
759- const VERSION = '6.9.2 ' ;
759+ const VERSION = '6.9.3 ' ;
760760
761761 /**
762762 * Error severity: message only, continue processing.
@@ -1873,7 +1873,7 @@ protected static function isShellSafe($string)
18731873 */
18741874 protected static function isPermittedPath ($ path )
18751875 {
1876- //Matches scheme definition from https://tools.ietf .org/html /rfc3986#section-3.1
1876+ //Matches scheme definition from https://www.rfc-editor .org/rfc /rfc3986#section-3.1
18771877 return !preg_match ('#^[a-z][a-z\d+.-]*://#i ' , $ path );
18781878 }
18791879
@@ -2707,7 +2707,7 @@ public function createHeader()
27072707 }
27082708
27092709 //Only allow a custom message ID if it conforms to RFC 5322 section 3.6.4
2710- //https://tools.ietf .org/html /rfc5322#section-3.6.4
2710+ //https://www.rfc-editor .org/rfc /rfc5322#section-3.6.4
27112711 if (
27122712 '' !== $ this ->MessageID &&
27132713 preg_match (
@@ -4912,7 +4912,7 @@ public function DKIM_Sign($signHeader)
49124912 * Uses the 'relaxed' algorithm from RFC6376 section 3.4.2.
49134913 * Canonicalized headers should *always* use CRLF, regardless of mailer setting.
49144914 *
4915- * @see https://tools.ietf .org/html /rfc6376#section-3.4.2
4915+ * @see https://www.rfc-editor .org/rfc /rfc6376#section-3.4.2
49164916 *
49174917 * @param string $signHeader Header
49184918 *
@@ -4924,7 +4924,7 @@ public function DKIM_HeaderC($signHeader)
49244924 $ signHeader = static ::normalizeBreaks ($ signHeader , self ::CRLF );
49254925 //Unfold header lines
49264926 //Note PCRE \s is too broad a definition of whitespace; RFC5322 defines it as `[ \t]`
4927- //@see https://tools.ietf .org/html /rfc5322#section-2.2
4927+ //@see https://www.rfc-editor .org/rfc /rfc5322#section-2.2
49284928 //That means this may break if you do something daft like put vertical tabs in your headers.
49294929 $ signHeader = preg_replace ('/\r\n[ \t]+/ ' , ' ' , $ signHeader );
49304930 //Break headers out into an array
@@ -4956,7 +4956,7 @@ public function DKIM_HeaderC($signHeader)
49564956 * Uses the 'simple' algorithm from RFC6376 section 3.4.3.
49574957 * Canonicalized bodies should *always* use CRLF, regardless of mailer setting.
49584958 *
4959- * @see https://tools.ietf .org/html /rfc6376#section-3.4.3
4959+ * @see https://www.rfc-editor .org/rfc /rfc6376#section-3.4.3
49604960 *
49614961 * @param string $body Message Body
49624962 *
@@ -4992,7 +4992,7 @@ public function DKIM_Add($headers_line, $subject, $body)
49924992 $ DKIMquery = 'dns/txt ' ; //Query method
49934993 $ DKIMtime = time ();
49944994 //Always sign these headers without being asked
4995- //Recommended list from https://tools.ietf .org/html /rfc6376#section-5.4.1
4995+ //Recommended list from https://www.rfc-editor .org/rfc /rfc6376#section-5.4.1
49964996 $ autoSignHeaders = [
49974997 'from ' ,
49984998 'to ' ,
@@ -5098,7 +5098,7 @@ public function DKIM_Add($headers_line, $subject, $body)
50985098 }
50995099 //The DKIM-Signature header is included in the signature *except for* the value of the `b` tag
51005100 //which is appended after calculating the signature
5101- //https://tools.ietf .org/html /rfc6376#section-3.5
5101+ //https://www.rfc-editor .org/rfc /rfc6376#section-3.5
51025102 $ dkimSignatureHeader = 'DKIM-Signature: v=1; ' .
51035103 ' d= ' . $ this ->DKIM_domain . '; ' .
51045104 ' s= ' . $ this ->DKIM_selector . '; ' . static ::$ LE .
0 commit comments