标题: 关于公益token的那个群的🍉!(省流版)
作者: #苏墨
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219949
时间: 2026-05-21 16:42:23
摘要:
作者: #苏墨
板块: #搞七捻三
编号:
2219949帖子: https://linux.do/t/topic/2219949
时间: 2026-05-21 16:42:23
摘要:
这是个公益站,但动不动就停,停
的时候就直接200返回自己群号。
然后就发现有的付费站也返回群号
了,不少人就发现自己用的付费站
是接的公益站,到这都没什么问
题。最近这个公益站长开始变着法
的打广告,先是200返回广告;然
后让AI往用户项目README里写广
告;然后让AI做开机自启弹窗脚本
往用户系统里写明文广告;今天变
成了让AI做开机自启弹窗脚本,但
是运行时解密一段base64广告
(因为分辨不出贩子,所以这些行
为是面向所有人的)。到这有些人
觉得有点过分了,说现在这事都干
得出来以后还有什么干不出来的,
然后就吵起来了,一堆不懂这种行
为危险性的开始批斗质疑的。
群友搜到的!
以下是群主的发言!
标题: gpt5.4压力这么大吗
作者: #lin
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219951
时间: 2026-05-21 16:42:52
摘要:
作者: #lin
板块: #搞七捻三
编号:
2219951帖子: https://linux.do/t/topic/2219951
时间: 2026-05-21 16:42:52
摘要:
跑几个命令就开始Selected model is at capacity. Please try a different model.了,
标题: 宝塔邮局-->升级ubuntu26.04后-->dovecot2.4.2
作者: #ShootChat
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/2219957
时间: 2026-05-21 16:43:58
摘要:
作者: #ShootChat
板块: #开发调优
编号:
2219957帖子: https://linux.do/t/topic/2219957
时间: 2026-05-21 16:43:58
摘要:
最近把几台ubuntu24.04,22.04升级至26.04之后
基于[宝塔面板]的[宝塔邮局管理器6.7]出现了异常Dovecot无法启动.
对目录/etc/dovecot进行各种AI后,目前可以*收发邮件*{异常}
表现为:
在使用非域名(即内网IP)有时候收件时会出现密码错误的情况,
使用域名时也偶发出现提示密码错误(foxmail客户端)
相关代码如下:
find /etc/dovecot/conf.d/ /etc/dovecot/ -maxdepth 1 -name "dovecot.conf" -o -name "dovecot-sql.conf.ext" -o -name "dovecot_storage_version.conf" -o -path "/etc/dovecot/conf.d/" | while read file; do [ -f “$file” ] && echo "---------- 文件名: file ----------" && grep -vE '^\s*(#|)’ “$file” && echo -e “\n”; done
---------- 文件名: /etc/dovecot/conf.d/10-mail.conf ----------
first_valid_uid = 150
mail_driver = maildir
mail_path = ~/
---------- 文件名: /etc/dovecot/conf.d/15-lda.conf ----------
protocol lda {
}
---------- 文件名: /etc/dovecot/conf.d/10-logging.conf ----------
---------- 文件名: /etc/dovecot/conf.d/90-sieve-extprograms.conf ----------
---------- 文件名: /etc/dovecot/conf.d/auth-oauth2.conf.ext ----------
---------- 文件名: /etc/dovecot/conf.d/auth-system.conf.ext ----------
passdb pam {
}
userdb passwd {
}
---------- 文件名: /etc/dovecot/conf.d/90-sieve.conf ----------
---------- 文件名: /etc/dovecot/conf.d/20-imap.conf ----------
protocol imap {
mail_plugins = quota
}
---------- 文件名: /etc/dovecot/conf.d/20-lmtp.conf ----------
protocol lmtp {
mail_plugins = quota
}
---------- 文件名: /etc/dovecot/conf.d/90-acl.conf ----------
---------- 文件名: /etc/dovecot/conf.d/10-master.conf ----------
service imap-login {
inet_listener imap {
}
inet_listener imaps {
}
}
service pop3-login {
inet_listener pop3 {
}
inet_listener pop3s {
}
}
service lmtp {
unix_listener /var/spool/postfix/private/dovecot-lmtp {
mode = 0666
user = postfix
group = postfix
}
}
service imap {
}
service pop3 {
}
service auth {
unix_listener auth-userdb {
mode = 0600
user = vmail
}
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}
user = dovecot
}
service auth-worker {
user = vmail
}
service dict {
unix_listener dict {
}
}
---------- 文件名: /etc/dovecot/conf.d/auth-sql.conf.ext ----------
passdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
userdb static {
args = uid=vmail gid=mail home=/www/vmail/%d/%n
}
---------- 文件名: /etc/dovecot/conf.d/90-quota.conf ----------
---------- 文件名: /etc/dovecot/conf.d/10-auth.conf ----------
auth_mechanisms = plain login
auth_allow_weak_schemes = yes
sql_driver = sqlite
sqlite_path = /www/vmail/postfixadmin.db
passdb sql {
default_password_scheme = MD5-CRYPT
query = SELECT password FROM mailbox WHERE username = ‘%{user}’ AND active = 1
}
userdb static {
fields {
uid = vmail
gid = mail
home = /www/vmail/%{user|domain}/%{user|username}
}
}
---------- 文件名: /etc/dovecot/conf.d/90-fts.conf ----------
fts_autoindex = yes
fts_autoindex_max_recent_msgs = 999
fts_search_add_missing = yes
---------- 文件名: /etc/dovecot/conf.d/20-pop3.conf ----------
protocol pop3 {
}
---------- 文件名: /etc/dovecot/conf.d/auth-deny.conf.ext ----------
---------- 文件名: /etc/dovecot/conf.d/auth-static.conf.ext ----------
---------- 文件名: /etc/dovecot/conf.d/10-ssl.conf ----------
ssl = yes
ssl_server_cert_file = /etc/dovecot/private/dovecot.pem
ssl_server_key_file = /etc/dovecot/private/dovecot.key
ssl_min_protocol = TLSv1.2
---------- 文件名: /etc/dovecot/conf.d/auth-master.conf.ext ----------
---------- 文件名: /etc/dovecot/conf.d/auth-passwdfile.conf.ext ----------
---------- 文件名: /etc/dovecot/conf.d/15-mailboxes.conf ----------
namespace inbox {
mailbox Drafts {
auto = subscribe
special_use = \Drafts
}
mailbox Junk {
auto = subscribe
special_use = \Junk
}
mailbox Trash {
auto = subscribe
special_use = \Trash
}
mailbox Sent {
auto = subscribe
special_use = \Sent
}
mailbox “Sent Messages” {
special_use = \Sent
}
}
---------- 文件名: /etc/dovecot/conf.d/30-dict-server.conf ----------
dict_server {
}
---------- 文件名: /etc/dovecot/conf.d/10-metrics.conf ----------
---------- 文件名: /etc/dovecot/dovecot_storage_version.conf ----------
dovecot_storage_versio
标题: opencode不回复
作者: #iceuy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219963
时间: 2026-05-21 16:44:34
摘要:
作者: #iceuy
板块: #搞七捻三
编号:
2219963帖子: https://linux.do/t/topic/2219963
时间: 2026-05-21 16:44:34
摘要:
opencode用cc配置后不回复怎么回事啊,有大佬知道吗
标题: 好久没发帖了,最近两周在A股亏麻了,美股今年总收益35%,A股今年总收益-12%
作者: #heng
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219976
时间: 2026-05-21 16:46:47
摘要:
作者: #heng
板块: #搞七捻三
编号:
2219976帖子: https://linux.do/t/topic/2219976
时间: 2026-05-21 16:46:47
摘要:
因为工作不忙,每天都盯盘很久,每天在A股抓热点、看新闻,提前布局,没想到折腾半年,到今天收益还是负的,这市场是真的烂,唉。六月又是烂行情,这个月回不了本就不买A股了,太难受了 ,附带一张我在美股连续做t赚到的图
标题: Claude Team的管理员可以看到子账户的Claude Code聊天记录吗
作者: #罗辑赞歌
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/2219977
时间: 2026-05-21 16:46:51
摘要:
作者: #罗辑赞歌
板块: #开发调优
编号:
2219977帖子: https://linux.do/t/topic/2219977
时间: 2026-05-21 16:46:51
摘要:
公司给提供Claude Team Max账号,超级耐用啊!但是。。。!
除了公司要求完成的事项以外,还想在业余时间写点自己的东西,突然想到这玩意有没有导出会话记录的功能。。
于是我就网上搜索,没搜到明确表示“使用Claude Team账号在使用Claude Code 并使用订阅登录时,可以远程导出会话记录”的功能。
我的理解是Web页面上那些记录自己可以导出,公司也可以导出。API调用的,应该没啥审计吧。
但是Claude自己本身倒是举例说明是可以导出的,求教。
标题: 618 手机推荐
作者: #linnuo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219982
时间: 2026-05-21 16:47:48
摘要:
作者: #linnuo
板块: #搞七捻三
编号:
2219982帖子: https://linux.do/t/topic/2219982
时间: 2026-05-21 16:47:48
摘要:
佬友们,618活动已经开始了,手上的小米13已经用了三年多该换机了,之前的是12+512的内存配置,希望新机起步是16+512g,价格在5000以内,如果是1tb的内存价格可以放到5500以内,希望买个水桶机,有以下要求,按照需求排名:
重度王者玩家,希望可以高画质高帧率运行不发烫,可以打游戏的时候多开微信电话应用;
拍照好,主要是人像,偶尔旅游拍一些自然景观;
续航久,充电快,系统流畅bug少;
其它外围配置,比如usb3,马达比现在的13强就行;
已经看了很多的攻略,但是各家的次旗舰多少都有点问题:
oppo系是首先排除的,屏幕和口碑都不太好,我对直屏观感很好,但是天马屏网传对眼睛不友好;其次,也不喜欢内置代言人图片的操作和之前母亲节文案翻车事件,不过网上对于小布记忆的功能介绍看起来也很不错,不知道是不是oppo营销的,我之前很倾向于换oppo find x9pro,但是种种因素造就我有点排斥这个品牌;
荣耀的魔法8pro,优点是护眼,影像可能比ov略差,但应该够用;续航和外放都感觉是第一梯队的;看了极客湾的大横评,王者游戏性能是比较不错的,low帧大概90多吧,能耗也低3.1w,总体比较均衡,比较符合我的要求,但是有几个小缺点:
背板质感差,我对手上的米13的最满意的点就是握持质感很无敌,非常舒服,但是现在几乎找不到这种背屏材质了,好像是金属加玻璃的材质
屏幕比较窄,可能影响游戏体验(这个是真的吗,有没有用过的佬友说一下);
四曲面屏,不方便自己贴膜,这个倒还可以接受,也可以体验一下曲面屏的感受;
vivo x300 pro,这款机型我目前了解不多,但是影像和游戏性能应该都比较符合我的需求,但是续航是最差的,只有6000,而且外放好像也比较拉。
希望佬友们能给我一点用机的体验感受和选机建议。以上的信息也供618选机的佬友们参考,非数码专家,可能有描述不对的地方,勿喷
标题: 光帆现在不让新账号开2c2g了吗
作者: #开元来的小禾苗
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2219983
时间: 2026-05-21 16:47:51
摘要:
作者: #开元来的小禾苗
板块: #搞七捻三
编号:
2219983帖子: https://linux.do/t/topic/2219983
时间: 2026-05-21 16:47:51
摘要:
我昨天注册的aws ,做完任务升级套餐,去开光帆,不让我开2c2g的,开2c1g倒是可以
标题: 有没有大佬教下java怎么用AI编程,比如codex
作者: #izengyiw
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/2219984
时间: 2026-05-21 16:47:54
摘要:
作者: #izengyiw
板块: #开发调优
编号:
2219984帖子: https://linux.do/t/topic/2219984
时间: 2026-05-21 16:47:54
摘要:
之前都没咋用过,现在Java想用ai开发难入门,cursor是最好用的吗
标题: deepseek API有网页版的搜索功能吗?
作者: #Zhliu0124
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/2219993
时间: 2026-05-21 16:49:23
摘要:
作者: #Zhliu0124
板块: #开发调优
编号:
2219993帖子: https://linux.do/t/topic/2219993
时间: 2026-05-21 16:49:23
摘要:
DeepSeek pro把文件上传关闭了,有点不方便。
请问如果自己用官网的API的话,网页版的智能搜索功能API访问也提供吗?
标题: cc的Agent Team大家有什么有趣的玩法?
作者: #Underthemoon
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/2220004
时间: 2026-05-21 16:51:19
摘要:
作者: #Underthemoon
板块: #开发调优
编号:
2220004帖子: https://linux.do/t/topic/2220004
时间: 2026-05-21 16:51:19
摘要:
今天开了5个Agent并行研究一个任务,挺好玩的
标题: 不要更新codex到0.132.0⚠️
作者: #Albedo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2220010
时间: 2026-05-21 16:51:57
摘要:
作者: #Albedo
板块: #搞七捻三
编号:
2220010帖子: https://linux.do/t/topic/2220010
时间: 2026-05-21 16:51:57
摘要:
推荐codex 0.130.0,千万别更新到0.132.0
1.旧版本0.130.0,设置了goal会一直工作,直到上下文耗尽
而最新版一到5h限额就停了,不再继续干活了
2.旧版本0.130.0,五小时限额刷新后会马上起来干活,最新版停下之后必须手动/goal resume才能继续干活
官方更新也确认了这一点
旧版本一个号一天就能用完周限额,新版本使用体验太差了 拜托这不是bug,是特性啊喂
标题: win10的本地连接不见了
作者: #wanzi
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2220018
时间: 2026-05-21 16:53:31
摘要:
作者: #wanzi
板块: #搞七捻三
编号:
2220018帖子: https://linux.do/t/topic/2220018
时间: 2026-05-21 16:53:31
摘要:
求助各位佬,突然发现笔记本上本地连接不见了,然后开热点出现无ip分配这个怎么办?
标题: xiaomi mmo token plan 2亿key 分享
作者: #JaydenHarrys
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/2220019
时间: 2026-05-21 16:53:32
摘要:
作者: #JaydenHarrys
板块: #福利羊毛
编号:
2220019帖子: https://linux.do/t/topic/2220019
时间: 2026-05-21 16:53:32
摘要:
有效期到2026-06-07
兼容 OpenAI 接口协议:
https://token-plan-cn.xiaomimimo.com/v1
兼容 Anthropic 接口协议:
https://token-plan-cn.xiaomimimo.com/anthropic
APIKEY: tp-ce66ts1po8s7xtaqc6pzoq5apdyuv2xn91y7ddal6nj2lnu0
模型
MiMo-V2.5-Pro、MiMo-V2.5、MiMo-V2.5-TTS-VoiceClone、MiMo-V2.5-TTS-VoiceDesign、MiMo-V2.5-TTS、MiMo-V2-Pro、MiMo-V2-Omni、MiMo-V2-TTS
额度
200,000,000 Credits
编程工具
支持 OpenClaw、Claude Code、OpenCode、KiloCode 等国内外主流编程工具
标题: 腾讯混元全新翻译模型Hy-MT2开源
作者: #MonoEven
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/2220026
时间: 2026-05-21 16:54:30
摘要:
作者: #MonoEven
板块: #搞七捻三
编号:
2220026帖子: https://linux.do/t/topic/2220026
时间: 2026-05-21 16:54:30
摘要:
Hy-MT2包含3个尺寸的模型Hy-MT2-1.8B、Hy-MT2-7B、Hy-MT2-30B-A3B,三个模型均支持33个语种互译,5种民汉/方言。HF官网在https://huggingface.co/collections/tencent/hy-mt2
官方给的跑分图:
还搞了一个小程序说是,不知道手机端推理能不能比之前快一些,上次部署了个MT-1.5-2bit量化版本在手机上跑一个几十词小翻译都得七八分钟
标题: Vscode更换Maple Mono等宽字体
作者: #烧味
板块: #文档共建
编号:
帖子: https://linux.do/t/topic/2220027
时间: 2026-05-21 16:54:31
摘要:
作者: #烧味
板块: #文档共建
编号:
2220027帖子: https://linux.do/t/topic/2220027
时间: 2026-05-21 16:54:31
摘要:
字体效果
同事发我时,初看确实很惊艳。先上效果:
具体步骤
进入Maple-font官网,下载懒人包
Release V7.9 · subframe7536/maple-font
解压
选中所有的ttf文件,右键,点击安装
win11设置中,搜索字体进入设置页
点击进入,可以看到各个字体;然后选择你喜欢的字体,注意这个字体的名称
接下来进入vscode,使用快捷键ctrl + ,进入设置页面,点击右上角进入settings.json配置文件。
在配置文件中加入以下配置指令
Maple Mono NF CN Medium 是上面为你喜欢的字体名称,每种字体名称不同。
# setup font family
"editor.fontFamily": "Maple Mono NF CN Medium, Jetbrains Mono, Menlo, Consolas, monospace",
# enable ligatures
"editor.fontLigatures": "'calt'",
# or enable opentype features
// "editor.fontLigatures": "'calt', 'cv01', 'ss01', 'zero'",
自动保存后退出,就可以收获好看的代码界面和终端了
参考文章
开源、免费、可商用,思源黑体、思源宋体、Maple Mono下载和安装指南
maple-font/source/features/README.md at variable · subframe7536/maple-font)