Comments for Boldly Open http://boldlyopen.com To boldly muse about Open Source Sat, 20 Feb 2010 02:48:29 +0000 http://wordpress.org/?v=2.9.2 hourly 1 Comment on Good news, bad news by Non basta il software libero « Macworld Online http://boldlyopen.com/2010/02/18/good-news-bad-news/comment-page-1/#comment-84018 Non basta il software libero « Macworld Online Sat, 20 Feb 2010 02:48:29 +0000 http://boldlyopen.com/?p=408#comment-84018 [...] è un amico e leggo regolarmente il suo blog. Essendo scritto in inglese, ne traduco la parte fondamentale relativa all’intervista. Non ho [...] [...] è un amico e leggo regolarmente il suo blog. Essendo scritto in inglese, ne traduco la parte fondamentale relativa all’intervista. Non ho [...]

]]>
Comment on Good news, bad news by lux http://boldlyopen.com/2010/02/18/good-news-bad-news/comment-page-1/#comment-84016 lux Fri, 19 Feb 2010 12:36:05 +0000 http://boldlyopen.com/?p=408#comment-84016 They invented, like, Photoshop for text. Or should I say GIMP? They invented, like, Photoshop for text. Or should I say GIMP?

]]>
Comment on Time for some news: BPmo is on his way by Good news, bad news | Boldly Open http://boldlyopen.com/2009/11/05/time-for-some-news-bpmo-is-on-his-way/comment-page-1/#comment-84015 Good news, bad news | Boldly Open Thu, 18 Feb 2010 18:08:15 +0000 http://boldlyopen.com/?p=403#comment-84015 [...] Blog « Time for some news: BPmo is on his way [...] [...] Blog « Time for some news: BPmo is on his way [...]

]]>
Comment on Poor man’s mail merge in Apple Mail by Scrivo a chi voglio con AppleScript « Macworld Online http://boldlyopen.com/2008/08/26/poor-mans-mail-merge-in-apple-mail/comment-page-1/#comment-84009 Scrivo a chi voglio con AppleScript « Macworld Online Tue, 26 Jan 2010 17:12:57 +0000 http://boldlyopen.com/?p=315#comment-84009 [...] anche di più. Gianugo ha pubblicato sul proprio blog la versione aggiornata dello script. Esercizio aggiuntivo: che cosa c’è di più, rispetto a quanto sopra? var [...] [...] anche di più. Gianugo ha pubblicato sul proprio blog la versione aggiornata dello script. Esercizio aggiuntivo: che cosa c’è di più, rispetto a quanto sopra? var [...]

]]>
Comment on Time for some news: BPmo is on his way by Piergiorgio Lucidi http://boldlyopen.com/2009/11/05/time-for-some-news-bpmo-is-on-his-way/comment-page-1/#comment-83905 Piergiorgio Lucidi Wed, 18 Nov 2009 18:38:08 +0000 http://boldlyopen.com/?p=403#comment-83905 WOW!!! Great news here, Gianugo I suggest you to train yourself to change many nappies ;) Congratulations! WOW!!!

Great news here, Gianugo I suggest you to train yourself to change many nappies ;)

Congratulations!

]]>
Comment on Poor man’s mail merge in Apple Mail by Graham Kirby http://boldlyopen.com/2008/08/26/poor-mans-mail-merge-in-apple-mail/comment-page-1/#comment-83844 Graham Kirby Tue, 10 Nov 2009 23:09:16 +0000 http://boldlyopen.com/?p=315#comment-83844 Sorry, problem with previous posting, probably with HTML encoding of angle brackets. Intro should read: If an entry in the address file has the format firstname lastname <emailaddress> Sorry, problem with previous posting, probably with HTML encoding of angle brackets.

Intro should read:

If an entry in the address file has the format

firstname lastname <emailaddress>

]]>
Comment on Poor man’s mail merge in Apple Mail by Graham Kirby http://boldlyopen.com/2008/08/26/poor-mans-mail-merge-in-apple-mail/comment-page-1/#comment-83843 Graham Kirby Tue, 10 Nov 2009 23:06:08 +0000 http://boldlyopen.com/?p=315#comment-83843 Here's a tweaked version that allows you to select a signature to use, formats the message as plaintext, and does some simple personalisation. If an entry in the address file has the format firstname lastname then the message body will begin "Dear firstname". Graham --------- (* Copyright 2008 Gianugo Rabellino - http://boldlyopen.com This snippet is licensed under the Apache License version 2.0 see http://www.apache.org/licenses/LICENSE-2.0.html *) tell application "Mail" to set allAccounts to name of every account choose from list allAccounts with title "Choose the Mail account to use..." set theAccount to result as string tell application "Mail" to set allSignatures to name of every signature choose from list allSignatures with title "Choose the signature to use..." set theSignatureName to result as string set subjectDialog to display dialog ¬ "Enter the subject of the email to send" default answer "no subject" set theSubject to text returned of subjectDialog set sendOrPreview to the button returned of ¬ (display dialog ¬ "Send the messages right away or preview and send manually?" with title ¬ "Send or Preview?" with icon caution ¬ buttons {"Preview", "Send"} ¬ default button 1) set theText to (choose file with prompt "Pick a text file containing the email text") set messageBody to read theText tell application "Finder" set addresses to paragraphs of ¬ (read (choose file with prompt "Pick a text file containing email addresses, one by line")) end tell set AppleScript's text item delimiters to space tell application "Mail" activate set activeAccount to account theAccount repeat with i from 1 to (the length of addresses) set target to item i of addresses set targetWords to every text item of target if (the length of targetWords) > 1 then set forename to first word of target set theContent to "Dear " & forename & return & return & messageBody else set theContent to messageBody end if set newMessage to make new outgoing message ¬ with properties {account:activeAccount, subject:theSubject, content:theContent} set message signature of newMessage to signature theSignatureName of application "Mail" tell newMessage set sender to ¬ ((full name of activeAccount & " ") make new to recipient at end of to recipients ¬ with properties {address:(a reference to target)} set visible to true end tell -- Set to plaintext -- From http://www.kith.org/journals/jed/2009/09/12/12380.html tell application "System Events" tell application process "Mail" set frontmost to true end tell keystroke "T" using {command down, shift down} end tell if sendOrPreview is equal to "Send" then send newMessage end if end repeat end tell Here’s a tweaked version that allows you to select a signature to use, formats the message as plaintext, and does some simple personalisation.

If an entry in the address file has the format

firstname lastname

then the message body will begin “Dear firstname”.

Graham

———

(* Copyright 2008 Gianugo Rabellino – http://boldlyopen.com
This snippet is licensed under the Apache License version 2.0
see http://www.apache.org/licenses/LICENSE-2.0.html *)

tell application “Mail” to set allAccounts to name of every account
choose from list allAccounts with title “Choose the Mail account to use…”
set theAccount to result as string

tell application “Mail” to set allSignatures to name of every signature
choose from list allSignatures with title “Choose the signature to use…”
set theSignatureName to result as string

set subjectDialog to display dialog ¬
“Enter the subject of the email to send” default answer “no subject”
set theSubject to text returned of subjectDialog

set sendOrPreview to the button returned of ¬
(display dialog ¬
“Send the messages right away or preview and send manually?” with title ¬
“Send or Preview?” with icon caution ¬
buttons {“Preview”, “Send”} ¬
default button 1)

set theText to (choose file with prompt “Pick a text file containing the email text”)

set messageBody to read theText

tell application “Finder”
set addresses to paragraphs of ¬
(read (choose file with prompt “Pick a text file containing email addresses, one by line”))
end tell

set AppleScript’s text item delimiters to space

tell application “Mail”
activate
set activeAccount to account theAccount
repeat with i from 1 to (the length of addresses)

set target to item i of addresses
set targetWords to every text item of target

if (the length of targetWords) > 1 then
set forename to first word of target
set theContent to “Dear ” & forename & return & return & messageBody
else
set theContent to messageBody
end if

set newMessage to make new outgoing message ¬
with properties {account:activeAccount, subject:theSubject, content:theContent}

set message signature of newMessage to signature theSignatureName of application “Mail”

tell newMessage
set sender to ¬
((full name of activeAccount & ” “)
make new to recipient at end of to recipients ¬
with properties {address:(a reference to target)}
set visible to true
end tell

– Set to plaintext
– From http://www.kith.org/journals/jed/2009/09/12/12380.html
tell application “System Events”
tell application process “Mail”
set frontmost to true
end tell
keystroke “T” using {command down, shift down}
end tell

if sendOrPreview is equal to “Send” then
send newMessage
end if
end repeat
end tell

]]>
Comment on Time for some news: BPmo is on his way by Gabriele Columbro http://boldlyopen.com/2009/11/05/time-for-some-news-bpmo-is-on-his-way/comment-page-1/#comment-83842 Gabriele Columbro Mon, 09 Nov 2009 15:44:36 +0000 http://boldlyopen.com/?p=403#comment-83842 Grande Don G! I'm so happy for you. All the best for you and your growing family! Grande Don G!

I’m so happy for you.

All the best for you and your growing family!

]]>
Comment on Time for some news: BPmo is on his way by Simone http://boldlyopen.com/2009/11/05/time-for-some-news-bpmo-is-on-his-way/comment-page-1/#comment-83838 Simone Fri, 06 Nov 2009 18:43:15 +0000 http://boldlyopen.com/?p=403#comment-83838 Congrats Gianugo!!!! Congrats Gianugo!!!!

]]>
Comment on Time for some news: BPmo is on his way by lux http://boldlyopen.com/2009/11/05/time-for-some-news-bpmo-is-on-his-way/comment-page-1/#comment-83837 lux Fri, 06 Nov 2009 14:04:52 +0000 http://boldlyopen.com/?p=403#comment-83837 Excellent news! I'm happy. Congrats to all the design team! Excellent news! I’m happy. Congrats to all the design team!

]]>