Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Cheng Zhen
coool

已经使用,感谢 :D

Cheng Zhen
https://wogong.net/

On Thu, May 26, 2016 at 10:53 AM, Yutian Li | 李雨田 
wrote:

> 可以用 script.google.com ,自己写个脚本操作 gmail 邮件。然后设定时运行(比如 archive 所有 [tuna]
> 的邮件)。完全不用管 oauth 的东西,非常方便。
>
> 我用这个来每个小时把所有 archive 的邮件标为已读(inbox 里有时候直接 archive 了未读的邮件会显示为粗体,让我很不爽)
>
> ```
> function markArchivedAsRead() {
>   var threads = GmailApp.search('label:unread -label:inbox');
>   GmailApp.markThreadsRead(threads);
> }
> ```
>
> 当然可以做的事情还很多。。。
>
> On Tue, May 24, 2016 at 8:52 AM Cheng Zhen  wrote:
>
>> 邮件尾部:
>>
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to tuna-general+unsubscr...@googlegroups.com.
>>
>> --
>> Cheng Zhen
>>
>> On May 24, 2016, at 08:49, 刘阳  wrote:
>>
>> 求助,怎么退订这些通知邮件,太多了,没时间看
>>
>> --
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "TUNA 主邮件列表" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to tuna-general+unsubscr...@googlegroups.com.
>> To post to this group, send email to tuna-general@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>> --
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "TUNA 主邮件列表" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to tuna-general+unsubscr...@googlegroups.com.
>> To post to this group, send email to tuna-general@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> Best regards,
>
> Yutian Li
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "TUNA 主邮件列表" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tuna-general+unsubscr...@googlegroups.com.
> To post to this group, send email to tuna-general@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Yutian Li | 李雨田
可以用 script.google.com ,自己写个脚本操作 gmail 邮件。然后设定时运行(比如 archive 所有 [tuna]
的邮件)。完全不用管 oauth 的东西,非常方便。

我用这个来每个小时把所有 archive 的邮件标为已读(inbox 里有时候直接 archive 了未读的邮件会显示为粗体,让我很不爽)

```
function markArchivedAsRead() {
  var threads = GmailApp.search('label:unread -label:inbox');
  GmailApp.markThreadsRead(threads);
}
```

当然可以做的事情还很多。。。

On Tue, May 24, 2016 at 8:52 AM Cheng Zhen  wrote:

> 邮件尾部:
>
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tuna-general+unsubscr...@googlegroups.com.
>
> --
> Cheng Zhen
>
> On May 24, 2016, at 08:49, 刘阳  wrote:
>
> 求助,怎么退订这些通知邮件,太多了,没时间看
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "TUNA 主邮件列表" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tuna-general+unsubscr...@googlegroups.com.
> To post to this group, send email to tuna-general@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "TUNA 主邮件列表" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to tuna-general+unsubscr...@googlegroups.com.
> To post to this group, send email to tuna-general@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 
Best regards,

Yutian Li

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Alick Zhao
On Wed, May 25, 2016 at 6:01 AM, Wang Kang  wrote:

> 所以说你需要一个好的邮件客户端
>
> 我记得alick用的是Thunderbird?
>
>
已经没有在用了。详情:
https://www.facebook.com/alick9188/posts/226933614350574?pnref=story

-- 
Regards,
Alick

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Cheng Zhen
On Wed, May 25, 2016 at 10:52 PM, Yuxin Wu  wrote:

> 隐藏了之后, 在客户端里还能知道邮件的label么?
>
> ​
肯定不知道了。

Gmail 的策略是一封邮件可以对应多个 label,这样会导致一封邮件出现在多个 IMAP 文件夹中。
如果习惯使用传统的 IMAP,一个可行的解决办法是手工维护 label,保证一封邮件只有一个 label。
这样在 IMAP 文件夹中就没有问题了。

​所以这很类似于是使用标签管理文件还是文件夹管理文件的区别。​

(​以上并非个人实践,纯属推测。😂

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Cheng Zhen
可以的。

--
Cheng Zhen

On May 25, 2016, at 21:47, Wang Kang  wrote:

Important和Starred也可以被隐藏掉吗?

--
Wang Kang

> On Wed, 25 May 2016, Cheng Zhen wrote:
> 
> On Wed, May 25, 2016 at 7:07 PM, Wang Kang  wrote:
> 
> 对的,你知道 Gmail 可以设置 label 不显示为 IMAP 目录么,可以*一定程度*缓解这个问题
> 
> 转移到 fastmail 失败,因为不想付费😂​

-- 

--- You received this message because you are subscribed to the Google Groups 
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


smime.p7s
Description: S/MIME cryptographic signature


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Wang Kang

Important和Starred也可以被隐藏掉吗?

--
Wang Kang

On Wed, 25 May 2016, Cheng Zhen wrote:


On Wed, May 25, 2016 at 7:07 PM, Wang Kang  wrote:

对的,你知道 Gmail 可以设置 label 不显示为 IMAP 目录么,可以*一定程度*缓解这个问题

转移到 fastmail 失败,因为不想付费😂​



--

--- 
You received this message because you are subscribed to the Google Groups "TUNA 主邮件列表" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 党凡
在 2016年5月25日星期三 UTC+8下午7:08:07,Wang Kang写道:
> 主要是发现Gmail的IMAP目录非常不科学,后来放弃Gmail转而用Fastmail去了
> 
> --
> Wang Kang
> 
> On Tue, 24 May 2016, Alick Zhao wrote:
> 
> > 万一手机上开了全部同步,手机就得开始发烫了……
> >
> > Gmail 的过滤器对于邮件列表非常好使,推荐使用。
> > 图文使用指南:https://wiki.tuna.tsinghua.edu.cn/GmailFilterHowto

fastmail实在是太棒了

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Cheng Zhen
On Wed, May 25, 2016 at 7:07 PM, Wang Kang  wrote:

> 主要是发现Gmail的IMAP目录非常不科学,后来放弃Gmail转而用Fastmail去了
>
>
对的,你知道 Gmail 可以设置 label 不显示为 IMAP 目录么,可以*一定程度*缓解这个问题

转移到 fastmail 失败,因为不想付费😂​

-- 

--- 
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Wang Kang

主要是发现Gmail的IMAP目录非常不科学,后来放弃Gmail转而用Fastmail去了

--
Wang Kang

On Tue, 24 May 2016, Alick Zhao wrote:


万一手机上开了全部同步,手机就得开始发烫了……

Gmail 的过滤器对于邮件列表非常好使,推荐使用。
图文使用指南:https://wiki.tuna.tsinghua.edu.cn/GmailFilterHowto


--

--- 
You received this message because you are subscribed to the Google Groups "TUNA 主邮件列表" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tuna-general] 怪怪的IPV6问题

2016-05-25 文章 Wang Kang

据说建设isatap服务器的工程师,以前是网络中心保安


On Tue, 24 May 2016, Alick Zhao wrote:


大鹰要是把清华 isatap 服务器找到收过来就好了,可能能提前知道这些变更。

还可以考虑 TUNA 申请维护,所谓维护就是不要动它。

2016-05-23 23:53 GMT-05:00 Justin Wong :


竟然是这个原因……
看来还是用脚本吧,默认网关几年前就改成 2402:f000 的那个了,只是之前旧的最近才停好像。
2402:f000/32 是清华的 IPv6 段,2001:250::/32 是 cernet2 的。
http://bgp.he.net/net/2402:f000::/32
http://bgp.he.net/net/2001:da8::/32

它们中间还隔了个 "CERNET2 at Tsinghua University"
http://bgp.he.net/AS45576#_graph6

--
Justin Wong



On Tue, May 24, 2016, at 12:43, Sam Stoelinga wrote:

终于解决了。问题是isatapd现在无法用了。。。我搜到了blaok的脚本

,他脚本配置使用2402:f000:1:1501:200:5efe:a66f:1501作为默认网关,用他的脚本就没问题。为什么突然用isatapd不行我不知道。。

你们用isatapd吗?

2016-05-21 21:07 GMT+08:00 Allen Zhong :

那你本机的路由表有检查过么...

On 2016/5/20 21:24, Sam Stoelinga wrote:

我也认为是路由器问题,但是我用无线理论上被人跟我用的一样的路由器吧。我还是觉得是我机器自己的问题。关掉ufw也没用。

On Fri, May 20, 2016 at 1:41 PM, Allen Zhong  wrote:


不了解贵校网络情况,但mtr看起来像是网关有问题,比如没有默认路由

On 2016/5/20 13:31, Shanker Wang wrote:

越看越觉得是你最后一跳的毛病。


在 2016年5月20日,13:28,Sam Stoelinga < 
sammiest...@gmail.com> 写道:

从日本机器到清华机器MTR:
Host
  Loss%   Snt   Last
Avg  Best  Wrst StDev
 1. ???
 2. 2001:x
   0.0%851.4  27.0
0.3 577.3  70.7
 3. xe-0-3-0-9.r02.tokyjp03.jp.bb.gin.ntt.net 8.3%853.5 339.3
1.3 7016. 1189.
 4. ae-10.r30.tokyjp05.jp.bb.gin.ntt.net 0.0%851.1   2.0   1.0
 18.8   2.7
 5. ae-4.r23.snjsca04.us.bb.gin.ntt.net 0.0%85  107.7 107.8 100.1
135.5   4.4
ae-1.r23.snjsca04.us.bb.gin.ntt.net
 6. ae-41.r02.snjsca04.us.bb.gin.ntt.net 16.7%85  107.9 1093. 100.2
7119. 1539.
 7. 100gigabitethernet2-3.core1.sjc2.he.net 0.0%85  128.4 155.4 109.7
1116. 184.8
 8. 100ge13-2.core1.lax1.he.net 0.0%85  108.0 112.2 100.9 144.1   6.1
10ge3-3.core1.pao1.he.net
 9. 100ge8-1.core1.lax2.he.net 0.0%85  110.9 117.3 103.5 148.9   8.5
100ge11-1.core1.lax2.he.net
10. cngi-bjix-as-ap-as23911.10gigabitethernet16-5.core1.lax2.he.net 29.4%
   85  125.7 2604. 113.4 7130. 1724.
11. 2001:252:0:302::1
 0.0%85  254.6
262.3 254.6 297.0   5.4
12. 2001:252:0:100::1
33.3%85  289.1
1679. 256.7 7304. 2030.
13. 2001:252:0:1::1
 0.0%85  260.9
260.7 252.1 332.2   8.8
14. 2001:da8:1:501::2
 0.0%85  258.7
259.6 249.7 356.0  12.2
15. cernet2.net 0.0%85  264.9 262.6 255.6 273.3   3.4
16. cernet2.net 0.0%84  262.6 263.3 255.4 306.9   7.4
17. 2402:f000:0:424::38
 0.0%84  264.3
262.2 254.5 284.3   3.6
18. 2402:f000:0:288::138
0.0%84  256.8
257.0 249.2 278.6   4.0
19. 2402:f000:0:3cc::205
   53.0%84  3257.
3182. 256.3 7272. 2909.
20. ???


从清华机器到日本机器就完全没有结果,MTR都是空的。

我到从清华机器ping最后一个路由器也没有结果:

ping -6 2402:f000:0:3cc::205
PING 2402:f000:0:3cc::205(2402:f000:0:3cc::205) 56 data bytes
^C
--- 2402:f000:0:3cc::205 ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3007ms

On Fri, May 20, 2016 at 12:29 PM, Shanker Wang 
wrote:


你试试 mtr --tcp -P 80 2402:xxx:xxx 这个命令,分别从两边测试一下对方。



在 2016年5月20日,08:20,Sam Stoelinga < 
sammiest...@gmail.com> 写道:


所有网站都不行。网线实验室获取IP,也试过Tsinghua 5g但是结果一样。
On May 20, 2016 1:18 AM, "Alick Zhao" < 
alick9...@gmail.com> wrote:




2016-05-19 4:42 GMT-05:00 Sam Stoelinga < 
sammiest...@gmail.com>:


Tuna大神们,

我最近用IPV6无法上网之前Ok,我知道搞网络最讨厌这样的用户,别担心这邮件包括tcpdump和细节,我也自己调试了不少,求帮助。情况如下:



最喜欢贴调试信息的了……讨厌的是跪求神马的。

所有 v6 网站都上不去,还是只是这个日本服务器?

双栈拿到的 v6 IP 地址?



--

Regards,
Alick

--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to 
tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to 
tuna-general@googlegroups.com.
For more options, visit 
https://groups.google.com/d/optout.


--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to 
tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to 
tuna-general@googlegroups.com.
For more options, visit 
https://groups.google.com/d/optout.



--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to 
tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit 

Re: [tuna-general] 求助退订邮件

2016-05-25 文章 Wang Kang

所以说你需要一个好的邮件客户端

我记得alick用的是Thunderbird?

--
Wang Kang

On Tue, 24 May 2016, Alick Zhao wrote:


其实我们一般选择放那里不看,等积攒了 1000 封时全部标记已读 233 😂

On Mon, May 23, 2016 at 8:44 PM, Shanker Wang 
wrote:


或者你可以选择每天发送摘要


在 2016年5月24日,08:52,Cheng Zhen  写道:

邮件尾部:

To unsubscribe from this group and stop receiving emails from it, send an
email to tuna-general+unsubscr...@googlegroups.com.

--
Cheng Zhen

On May 24, 2016, at 08:49, 刘阳  wrote:

求助,怎么退订这些通知邮件,太多了,没时间看

--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--

---
You received this message because you are subscribed to the Google Groups
"TUNA 主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.





--
Regards,
Alick

--

---
You received this message because you are subscribed to the Google Groups "TUNA 
主邮件列表" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--

--- 
You received this message because you are subscribed to the Google Groups "TUNA 主邮件列表" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to tuna-general+unsubscr...@googlegroups.com.
To post to this group, send email to tuna-general@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.