修改 thundbird 签名
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
thundbird 签名分为 html 和非 html
1.修改非html
需要修改源代码,重新编译
mailnews\compose\src\nsMsgCompose.cpp
line 4247
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
static const char htmlBreak[] = "<br>"; static const char dashes[] = "-- "; static const char htmlsigopen[] = "<div class=\"moz-signature\">"; static const char htmlsigclose[] = "</div>"; /* XXX: Due to a bug in 4.x' HTML editor, it will not be able to break this HTML sig, if quoted (for the user to interleave a comment). */ static const char _preopen[] = "<pre class=\"moz-signature\" cols=%d>"; char* preopen; static const char preclose[] = "</pre>"; int32_t wrapLength = 72; // setup default value in case GetWrapLength failed GetWrapLength(&wrapLength); preopen = PR_smprintf(_preopen, wrapLength); if (!preopen) return NS_ERROR_OUT_OF_MEMORY; |
2. html
直接修改设置。
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=1323