ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-16 21:53:54
Editing: ConnectionBase.php
Cancel
Save Changes
<?php /** * Swift Mailer Connection Base Class * All connection handlers extend this abstract class * Please read the LICENSE file * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Connection * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/ClassLoader.php"; Swift_ClassLoader::load("Swift_LogContainer"); Swift_ClassLoader::load("Swift_Connection"); Swift_ClassLoader::load("Swift_ConnectionException"); /** * Swift Connection Base Class * @package Swift_Connection * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_ConnectionBase extends Swift_Connection /*abstract*/ { /** * Any extensions the server might support * @var array */ var $extensions = array(); /** * True if the connection is ESMTP. * @var boolean */ var $isESMTP = false; /** * Set an extension which the connection reports to support * @param string Extension name * @param array Attributes of the extension */ function setExtension($name, $options=array()) { $log =& Swift_LogContainer::getLog(); if ($log->hasLevel(SWIFT_LOG_EVERYTHING)) { $log->add("SMTP extension '" . $name . "' reported with attributes [" . implode(", ", $options) . "]."); } $this->extensions[$name] = $options; } /** * Check if a given extension has been set as available * @param string The name of the extension * @return boolean */ function hasExtension($name) { return array_key_exists($name, $this->extensions); } /** * Execute any needed logic after connecting and handshaking */ function postConnect(/*Swift*/ $instance) {} /** * Get the list of attributes supported by the given extension * @param string The name of the connection * @return array The list of attributes * @throws Swift_ConnectionException If the extension cannot be found */ function getAttributes($extension) { if ($this->hasExtension($extension)) { return $this->extensions[$extension]; } else trigger_error("Unable to locate any attributes for the extension '" . $extension . "' since the extension cannot be found. " . "Consider using hasExtension() to check."); } /** * Returns TRUE if the connection needs a EHLO greeting. * @return boolean */ function getRequiresEHLO() { return $this->isESMTP; } /** * Set TRUE if the connection needs a EHLO greeting. * @param boolean */ function setRequiresEHLO($set) { $this->isESMTP = (bool) $set; $log =& Swift_LogContainer::getLog(); if ($log->hasLevel(SWIFT_LOG_EVERYTHING)) { $log->add("Forcing ESMTP mode. HELO is EHLO."); } } }
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete