文件操作 - Config.php
返回文件管理
返回主菜单
删除本文件
文件: /home/tecnoht/public_html/gigisantamaria--com/wp-content/plugins/wp-smtp/inc/Config.php
编辑文件内容
<?php namespace WPSMTP; class Config { public static function get_setup() { return array( 'gmail' => array( 'host' => 'smtp.gmail.com', 'security' => array( 'ssl' => 465, 'tls' => 587, ), ), 'sendgrid' => array( 'host' => 'smtp.sendgrid.net', 'security' => array( 'ssl' => 465, 'tls' => 587, ), 'username' => 'api' ), 'mailgun' => array( 'host' => 'smtp.mailgun.org', 'security' => array( 'ssl' => 465, 'tls' => 587, ), ), 'sendinblue' => array( 'host' => 'smtp-relay.sendinblue.com', 'security' => array( 'tls' => 587, ), ) ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件