summaryrefslogtreecommitdiff
path: root/lib/feed2imap
diff options
context:
space:
mode:
authorlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2007-10-03 19:35:00 +0000
committerlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2007-10-03 19:35:00 +0000
commitacc08a0b2329fcf74c97961ead9ee9d81abbc80c (patch)
tree3ca091e7d8d2f828d0a3286bd77768742758e504 /lib/feed2imap
parent4b24801a4eeef63f99f812e778a5868051639f4a (diff)
downloadfeed2imap-acc08a0b2329fcf74c97961ead9ee9d81abbc80c.tar.gz
feed2imap-acc08a0b2329fcf74c97961ead9ee9d81abbc80c.tar.bz2
feed2imap-acc08a0b2329fcf74c97961ead9ee9d81abbc80c.zip
small typo
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@139 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to '')
-rw-r--r--lib/feed2imap/itemtomail.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/feed2imap/itemtomail.rb b/lib/feed2imap/itemtomail.rb
index 56232b6..64c3569 100644
--- a/lib/feed2imap/itemtomail.rb
+++ b/lib/feed2imap/itemtomail.rb
@@ -83,7 +83,6 @@ def item_to_mail(item, index, updated, from = 'Feed2Imap')
htmlpart.header['Content-Type'] = 'text/html; charset=utf-8'
htmlpart.header['Content-Transfer-Encoding'] = '8bit'
htmlpart.body = item.to_html
- end
message.add_part(textpart)
message.add_part(htmlpart)
return message.to_s
h, so they'd like to have a default password length to generate that can be configured via environment variables per usual. I'm making the default 25. If the user forbids the use of symbols, pwgen will use a-zA-Z0-9, ensuring that at least one A-Z and at least one 0-9 is used. We want to have a password of at least 128-bits, so factoring in the issue with "at least one of this character type", 25 gets us there squarely. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>