我尝试用Gnus获取新邮件,但它不起作用。我在.emacs
文件中尝试了以下选项:
;(setq gnus-demon-timestep 10)
(gnus-demon-add-handler 'gnus-group-get-new-news 1 nil)
;(gnus-demon-add-handler 'gnus-demon-scan-mail 1 nil)
;(gnus-demon-add-handler 'gnus-demon-scan-news 1 nil)
(gnus-demon-init)
我尝试添加3个处理程序中的每一个,并放置t
而不是nil
,但它不起作用。如果我按g
或手动运行M-x gnus-group-get-new-news
,Gnus会抓取新邮件。我检查了gnus-demon-handlers
,确实说:gnus-demon-handlers's value is ((gnus-group-get-new-news 1 nil))
但它不会自动提取邮件。
答案 0 :(得分:2)
尝试移动(gnus-demon-init)高于其余部分。在恶魔被初始化之前,这些功能不存在。
e.g。
body {
margin:0px;
padding:0px;
font-family:"Open Sans", sans-serif;
}
/* Website Sidebar */
#sidebar {
background:rgb(41,41,41);
width:180px;
height:100%;
position:absolute;
left:0px;
top:0px;
}
ul {
margin:0px;
padding:0px;
}
ul li {
list-style:none;
padding:15px;
border-bottom:2px solid #111;
display: block;
}
ul li a {
background:rgb(41,41,41);
color:#ccc;
width:160px;
text-decoration:none;
}
ul li:before {
content:'\f1ce';
font-family:'FontAwesome';
}