Re: [off-list] Re: Import text from Mail -- including headers

2007-11-30 Thread John Cradock
Thanks for the clarification.


On Nov 29, 2007 10:56 PM, Jim Correia [EMAIL PROTECTED] wrote:
 On Nov 29, 2007, at 9:45 PM, John Cradock wrote:

  You mean this will be fixed in the next release of Yojimbo? Any idea
  when this will be?

 Yes - the next release of Yojimbo. Sorry if this wasn't clear.

 I know the problem is frustrating. Please bear with us while we
 prepare the next release which will take care of this issue.

 Jim

-- 
--
This message is sent to you because you are subscribed to
  the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Import text from Mail -- including headers

2007-11-30 Thread Claude
Very simple. Just do : print (comm.-P) and choose in the popup menu  
(PDF) : Yojimbo !

Claude



Le 29 nov. 07 à 18:31, John Cradock a écrit :


Is there an easy way to get an entire message from Mail into Yojimbo,
including the headers? I know I can select the text and then import
it, but is there one step way of getting all of this in?

--
-


--
--
This message is sent to you because you are subscribed to
 the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Import text from Mail -- including headers

2007-11-30 Thread John Cradock
Thanks for the reply. This brings it in as a PDF, but I'd like to get
it in as text.


On Nov 30, 2007 9:45 AM, Claude [EMAIL PROTECTED] wrote:
 Very simple. Just do : print (comm.-P) and choose in the popup menu
 (PDF) : Yojimbo !
 Claude



 Le 29 nov. 07 à 18:31, John Cradock a écrit :

  Is there an easy way to get an entire message from Mail into Yojimbo,
  including the headers? I know I can select the text and then import
  it, but is there one step way of getting all of this in?
 
  --
  -

 --

 --
 This message is sent to you because you are subscribed to
   the mailing list yojimbo-talk@barebones.com.
 To unsubscribe, send mail to: [EMAIL PROTECTED]
 List archives:  http://www.listsearch.com/yojimbotalk.lasso
 Have a feature request, or not sure if the software's working
 correctly? Please send mail to: [EMAIL PROTECTED]


--
--
This message is sent to you because you are subscribed to
  the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working
correctly? Please send mail to: [EMAIL PROTECTED]


Import text from Mail -- including headers

2007-11-29 Thread John Cradock
Is there an easy way to get an entire message from Mail into Yojimbo,
including the headers? I know I can select the text and then import
it, but is there one step way of getting all of this in?

-- 
--
This message is sent to you because you are subscribed to
  the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Import text from Mail -- including headers

2007-11-29 Thread Otto Kitsinger
That's the exact script I have, but it has quit working in 10.5 - The  
item is created with the proper title, but the contents are blank.   
Anyone have any ideas?


On Nov 29, 2007, at 9:37 AM, Sebastian Stark wrote:



Am 29.11.2007 um 17:31 schrieb John Cradock:


Is there an easy way to get an entire message from Mail into Yojimbo,
including the headers? I know I can select the text and then import
it, but is there one step way of getting all of this in?


Jim Correia once posted this (or something like this, can't remember  
if I changed something).


It shouldn't be too hard to change it such that all desired headers  
are included.



on generateMessageText(m)
tell application Mail
set _sender to sender of m
set _subject to subject of m
set _date to date received of m as string
set _contents to content of m
set _messageString to From:   _sender  return
		set _messageString to _messageString  Subject:   _subject   
return

set _messageString to _messageString  Date:   _date  return
set _messageString to _messageString  return  return  
_contents
end tell
end generateMessageText

on run
tell application Mail
tell message viewer 1
set messageList to selected messages
set _name to subject of item 1 of messageList
set _contents to 
repeat with m in messageList
set _contents to _contents  my 
generateMessageText(m)
end repeat
tell application Yojimbo
make new note item with properties {contents:_contents,  
name:_name}

end tell
end tell
end tell
end run

--
--
This message is sent to you because you are subscribed to
the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's  
workingcorrectly? Please send mail to: [EMAIL PROTECTED]





--
--
This message is sent to you because you are subscribed to
 the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Import text from Mail -- including headers

2007-11-29 Thread John Cradock
Thanks for the info. Does anyone have this working on a Leopard system?


On Nov 29, 2007 2:45 PM, Otto Kitsinger [EMAIL PROTECTED] wrote:
 That's the exact script I have, but it has quit working in 10.5 - The
 item is created with the proper title, but the contents are blank.
 Anyone have any ideas?


 On Nov 29, 2007, at 9:37 AM, Sebastian Stark wrote:

 
  Am 29.11.2007 um 17:31 schrieb John Cradock:
 
  Is there an easy way to get an entire message from Mail into Yojimbo,
  including the headers? I know I can select the text and then import
  it, but is there one step way of getting all of this in?
 
  Jim Correia once posted this (or something like this, can't remember
  if I changed something).
 
  It shouldn't be too hard to change it such that all desired headers
  are included.
 
 
  on generateMessageText(m)
tell application Mail
set _sender to sender of m
set _subject to subject of m
set _date to date received of m as string
set _contents to content of m
set _messageString to From:   _sender  return
set _messageString to _messageString  Subject:   _subject 
  
  return
set _messageString to _messageString  Date:   _date  
  return
set _messageString to _messageString  return  return  
  _contents
end tell
  end generateMessageText
 
  on run
tell application Mail
tell message viewer 1
set messageList to selected messages
set _name to subject of item 1 of messageList
set _contents to 
repeat with m in messageList
set _contents to _contents  my 
  generateMessageText(m)
end repeat
tell application Yojimbo
make new note item with properties 
  {contents:_contents,
  name:_name}
end tell
end tell
end tell
  end run
 
  --
  --
  This message is sent to you because you are subscribed to
  the mailing list yojimbo-talk@barebones.com.
  To unsubscribe, send mail to: [EMAIL PROTECTED]
  List archives:  http://www.listsearch.com/yojimbotalk.lasso
  Have a feature request, or not sure if the software's
  workingcorrectly? Please send mail to: [EMAIL PROTECTED]

 


 --
 --
 This message is sent to you because you are subscribed to
   the mailing list yojimbo-talk@barebones.com.
 To unsubscribe, send mail to: [EMAIL PROTECTED]
 List archives:  http://www.listsearch.com/yojimbotalk.lasso
 Have a feature request, or not sure if the software's working
 correctly? Please send mail to: [EMAIL PROTECTED]


-- 
--
This message is sent to you because you are subscribed to
  the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: [EMAIL PROTECTED]