mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
vim: generate custom message-id
Using Mail as a reference. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
6ff607d6a0
commit
ce5f3f3809
1 changed files with 10 additions and 0 deletions
|
@ -421,6 +421,7 @@ ruby << EOF
|
||||||
require 'notmuch'
|
require 'notmuch'
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require 'tempfile'
|
require 'tempfile'
|
||||||
|
require 'socket'
|
||||||
begin
|
begin
|
||||||
require 'mail'
|
require 'mail'
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
|
@ -492,6 +493,14 @@ ruby << EOF
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def generate_message_id
|
||||||
|
t = Time.now
|
||||||
|
random_tag = sprintf('%x%x_%x%x%x',
|
||||||
|
t.to_i, t.tv_usec,
|
||||||
|
$$, Thread.current.object_id.abs, rand(255))
|
||||||
|
return "<#{random_tag}@#{Socket.gethostname}.notmuch>"
|
||||||
|
end
|
||||||
|
|
||||||
def open_reply(orig)
|
def open_reply(orig)
|
||||||
help_lines = [
|
help_lines = [
|
||||||
'Notmuch-Help: Type in your message here; to help you use these bindings:',
|
'Notmuch-Help: Type in your message here; to help you use these bindings:',
|
||||||
|
@ -505,6 +514,7 @@ ruby << EOF
|
||||||
end
|
end
|
||||||
m.cc = orig[:cc]
|
m.cc = orig[:cc]
|
||||||
m.from = $email
|
m.from = $email
|
||||||
|
m.message_id = generate_message_id
|
||||||
m.charset = 'utf-8'
|
m.charset = 'utf-8'
|
||||||
m.content_transfer_encoding = '7bit'
|
m.content_transfer_encoding = '7bit'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue