无法打开邮箱:无效的远程规范

时间:2019-06-17 09:04:25

标签: php imap

我需要编写一个PHP脚本来从我们的交换服务器获取电子邮件。尝试获取它们时,出现以下错误:无法打开邮箱:无效的远程规范。目前,我正在使用PHP 5.3.29

我已经为imap_open()函数尝试了一些URL参数,例如'ssl','notls'和'novalidate-cert'。

我的PHP代码:

const deleteChirp = (liId) => {

我的数据:

const getAllChirps = () => {
    $.ajax({
        type: "GET",
        url: "/api/chirps/"
    })
        .then(chirps => {
            $('ul').empty();
            chirps.forEach(chirp => {
                $('ul').append(`<li id=${chirp.id} class="list-group-item"> 
            ${chirp.text} 
            <button onclick="deleteChirp('+chirp.id+')"> X </button>
            </li>`)
            })
        })
};
const deleteChirp = (liId) => {
    let id = liId
    alert('Delete button works');
    $.ajax({
        type: "DELETE",
        url: '/api/chirps/:' + id,
        success: function () {
            $('li#'+id).remove();
            getAllChirps();
        }
    }).then(res => console.log(res));
}

1 个答案:

答案 0 :(得分:0)

从“邮箱”中删除“ https://”:“ https://xxxx:32000”。确保端口号正确。通常,imap是993(SSL)或143。