diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/UrlAuth.php b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/UrlAuth.php new file mode 100644 index 000000000..77db79898 --- /dev/null +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/UrlAuth.php @@ -0,0 +1,52 @@ +EscapeFolderName($sFolderName); + } + if ($sMechanism) { + $aParams[] = $this->EscapeString($sMechanism); + } + $oResponses = $this->SendRequestGetResponse('RESETKEY', $aParams); + return null; + } + + public function GENURLAUTH(string $sMechanisms) + { + $oResponses = $this->SendRequestGetResponse('GENURLAUTH', array( + $this->EscapeString($sMechanism) + )); + return null; + } + + public function URLFETCH(string $sURLs) + { + $oResponses = $this->SendRequestGetResponse('URLFETCH', array( + $this->EscapeString($sURLs) + )); + return null; + } + +}