1

我按照本教程在我的服务器上安装了 DKIM:http: //www.howtoforge.com/set-up-dkim-domainkeys-identified-mail-working-with-postfix-on-centos-using-opendkim

但是 phpmailer 希望以下字段使用 DKIM:

/**
* Used with DKIM DNS Resource Record
* @var string
*/
public $DKIM_selector   = '';

/**
 * Used with DKIM DNS Resource Record
 * optional, in format of email address 'you@yourdomain.com'
 * @var string
*/
public $DKIM_identity   = '';

/**
 * Used with DKIM DNS Resource Record
 * @var string
 */
public $DKIM_passphrase   = '';

/**
 * Used with DKIM DNS Resource Record
 * optional, in format of email address 'you@yourdomain.com'
 * @var string
 */
public $DKIM_domain     = '';

/**
 * Used with DKIM DNS Resource Record
 * optional, in format of email address 'you@yourdomain.com'
 * @var string
 */
public $DKIM_private    = '';

我知道选择器和私钥。但是密码是什么?

另外,为了身份,我可以放*@mydomain.com吗?

4

0 回答 0