Home
last modified time | relevance | path

Searched refs:smtp (Results 1 – 15 of 15) sorted by relevance

/plugin/smtp/subtree/txtthinking/Mailer/tests/
H A DSMTPTest.php25 protected $smtp; variable in SMTPTest
34 $this->smtp = new SMTP();
41 $result = $this->smtp->setServer("localhost", "25", null);
43 $this->assertEquals('25', $this->testHelper->getPropertyValue($this->smtp, 'port'));
44 $this->assertSame($this->smtp, $result);
49 $result = $this->smtp->setAuth('none', 'none');
53 $this->assertSame($this->smtp, $result);
58 $this->smtp->setServer("localhost", "25", null)
67 $status = $this->smtp->send($message);
77 $this->smtp->setServer("localhost", "99999", null)
[all …]
H A DMailerTest.php11 protected $smtp; variable in MailerTest
15 $this->smtp = new SMTP(new Logger('SMTP'));
20 $this->smtp
32 $status = $this->smtp->send($this->message);
/plugin/smtp/
H A Daction.php46 $message = new \splitbrain\dokuwiki\plugin\smtp\Message(
53 $logger = new \splitbrain\dokuwiki\plugin\smtp\Logger();
54 $smtp = new \Tx\Mailer\SMTP($logger);
55 $smtp->setServer(
61 $smtp->setAuth(
66 $smtp->setEhlo(
73 $smtp->send($message);
H A Dplugin.info.txt1 base smtp
5 name smtp plugin
7 url https://www.dokuwiki.org/plugin:smtp
H A DREADME1 smtp Plugin for DokuWiki
6 https://www.dokuwiki.org/plugin:smtp
9 lib/plugins/smtp/ - if the folder is called different it
/plugin/smtp/subtree/txtthinking/Mailer/src/
H A DMailer.php37 protected $smtp; variable in Tx\\Mailer
49 $this->smtp = new SMTP($logger);
61 $this->smtp->setServer($host, $port, $secure);
72 $this->smtp->setAuth($username, $password);
169 return $this->smtp->send($this->message);
/plugin/smtp/subtree/txtthinking/Mailer/
H A DREADME.md19 ->setServer('smtp.ym.163.com', 25)
37 $smtp = new SMTP(); // new SMTP(new Logger('Mailer')); # set logger to receive debug log
38 $smtp->setServer('smtp.ym.163.com', 25)
49 $ok = $smtp->send($message);
/plugin/swiftmail/
H A Daction.php44 $smtp =& new Swift_Connection_SMTP(
53 … $smtp->attachAuthenticator(new Swift_Authenticator_PopB4Smtp($this->getConf('pop3_host')));
57 if($this->getConf('auth_user')) $smtp->setUsername($this->getConf('auth_user'));
58 if($this->getConf('auth_pass')) $smtp->setPassword($this->getConf('auth_pass'));
61 $swift =& new Swift($smtp,$this->getConf('localdomain'));
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/
H A DSMTP.php32 protected $smtp; variable in Tx\\Mailer\\SMTP
161 return fclose($this->smtp);
174 $this->smtp = @fsockopen($host, $this->port);
177 if (!$this->smtp){
201 if(!stream_socket_enable_crypto($this->smtp, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
333 fputs($this->smtp, $string, strlen($string));
345 while ($str = fgets($this->smtp, 515)) {
/plugin/swiftmail/Swift/
H A DAddress.php81 public function build($smtp=false) argument
83 if ($smtp)
H A DMessage.php201 public function getReturnPath($smtp=false) argument
205 if (!$smtp) return $this->headers->get("Return-Path");
/plugin/smtp/_test/
H A Dmessage.test.php50 $message = new \splitbrain\dokuwiki\plugin\smtp\Message('', '', $input);
/plugin/smtp/classes/
H A DLogger.php3 namespace splitbrain\dokuwiki\plugin\smtp;
H A DMessage.php3 namespace splitbrain\dokuwiki\plugin\smtp;
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md77 $func = DsnParser::parseFunc('failover(sendgrid://KEY@default smtp://127.0.0.1)');
109 $func = DsnParser::parseFunc('smtp://127.0.0.1');
115 $func = DsnParser::parseFunc('dsn(smtp://127.0.0.1)');