如何使用Perl处理多个Outlook帐户

时间:2017-01-31 01:50:50

标签: perl perl-module

我的任务是使用perl从outlook中读取辅助邮件帐户中的邮件。

1 个答案:

答案 0 :(得分:0)

请检查以下内容可能会对您有所帮助。但是您应该安装相应的模块。来自“http://www.perlmonks.org/?node_id=916759”的参考

ko.extenders.forcedValue = function(target, forcedValue) {
  return ko.computed({
    read: target.extend({ notify: "always" }),
    write: function(newValue) {
      console.log("Attempt:", target(), "->", newValue);

      if (newValue !== forcedValue) {
        console.log("Using " + forcedValue + " instead."); 
        target(forcedValue);
      } else {
        target(newValue);
      }

    }
  }).extend({ notify: "always" });
};