การส่งอีเมลผ่าน Mutt และ Gmail: ทำซ้ำ


8

ฉันพยายามตั้งค่า Mutt กับ GMail เป็นครั้งแรก ดูเหมือนว่าจะทำงานได้ดี อย่างไรก็ตามเมื่อฉันส่งจดหมายจาก Mutt มันจะปรากฏสองครั้งในโฟลเดอร์Sentของ GMail (ฉันถือว่ามันถูกส่งไปสองครั้ง - ฉันพยายามตรวจสอบความถูกต้องนั้น)

การกำหนดค่าของฉัน (ถอดสี):

# A basic .muttrc for use with Gmail
# Change the following six lines to match your Gmail account details
set imap_user = "XX"
set smtp_url = "XX@gmail.com@smtp.gmail.com:587/"
set from = "XX"
set realname = "XX"

# Change the following line to a different editor you prefer.
set editor = "vim"

# Basic config, you can leave this as is
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set imap_check_subscribed
set hostname = gmail.com
set mail_check = 120
set timeout = 300
set imap_keepalive = 300
set postponed = "+[Gmail]/Drafts"
set record = "+[Gmail]/Sent Mail"
set header_cache=~/.mutt/cache/headers
set message_cachedir=~/.mutt/cache/bodies
set certificate_file=~/.mutt/certificates
set move = no
set include
set sort = 'threads'
set sort_aux = 'reverse-last-date-received'
set auto_tag = yes
hdr_order Date From To Cc
auto_view text/html
bind editor <Tab> complete-query
bind editor ^T complete
bind editor <space> noop

# Gmail-style keyboard shortcuts
macro index,pager y "<enter-command>unset trash\n <delete-message>" "Gmail archive message"
macro index,pager d "<enter-command>set trash=\"imaps://imap.googlemail.com/[Gmail]/Bin\"\n <delete-message>" "Gmail delete message"
macro index,pager gl "<change-folder>"
macro index,pager gi "<change-folder>=INBOX<enter>" "Go to inbox"
macro index,pager ga "<change-folder>=[Gmail]/All Mail<enter>" "Go to all mail"
macro index,pager gs "<change-folder>=[Gmail]/Starred<enter>" "Go to starred messages"
macro index,pager gd "<change-folder>=[Gmail]/Drafts<enter>" "Go to drafts"
macro index,pager gt "<change-folder>=[Gmail]/Sent Mail<enter>" "Go to sent mail"

#Don't prompt on exit
set quit=yes


## =================
#Color definitions
## =================

set pgp_autosign

macro index,pager d "<enter-command>set trash=\"=[Gmail]/Bin\"\n <delete-message>" "Gmail delete message"
user1686

คำตอบ:


15

$recordเพื่อกำจัดซ้ำกันล้าง เซิร์ฟเวอร์ SMTP ของ Gmail จัดเก็บข้อความโดยอัตโนมัติ


7

อย่าบันทึกข้อความที่ส่งแล้ว Gmail มีฟังก์ชั่นดังset record = "+[Gmail]/Sent Mail"กล่าวไม่จำเป็น (และเป็นสาเหตุของปัญหาที่คุณอธิบาย)


6

เซิร์ฟเวอร์ Gmail จัดเก็บสำเนาของจดหมายที่ส่งทั้งหมดให้คุณโดยอัตโนมัติดังนั้นคุณไม่จำเป็นต้องปิดเสียงเพื่อเก็บสำเนา คุณต้องการรักษาการ$recordตั้งค่าตามที่อนุญาตให้คุณดูโฟลเดอร์ที่ถูกส่งจาก mutt ผ่าน<ทางลัด สิ่งที่คุณต้องการจะทำคือการตั้งค่า$copyการnoจัดเก็บของอีเมลที่ส่งทั้งหมดปิดการใช้งานของคนโง่:

set record = "+[Gmail]/Sent Mail"
set copy = no

และไม่ใช่อีเมลไม่ได้ถูกส่งถึงผู้รับสองครั้งจริง ๆ


โหวตขึ้นสำหรับคำแนะนำที่เป็นประโยชน์เกี่ยวกับการใช้งาน<(ซึ่งฉันไม่รู้) นี่เป็นคำตอบเดียวที่รับรอง OP เกี่ยวกับอีเมลที่ไม่ถูกส่งสองครั้ง
Anthony Geoghegan

4

ผ่าน: http://mail.google.com/support/bin/answer.py?hl=th&answer=78892

อย่าบันทึกข้อความที่ส่งบนเซิร์ฟเวอร์ หากลูกค้าของคุณกำลังส่งจดหมายผ่านเซิร์ฟเวอร์ SMTP ของ Gmail ข้อความที่คุณส่งจะถูกคัดลอกไปยังโฟลเดอร์ [Gmail] / จดหมายที่ส่งโดยอัตโนมัติ

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.