ficho
7549
Luka
6831
Darko Kontin
4265 Ljudi ... što koristite kao mail notifier ?
Još nešto što me kopka.Doma koristim transmission i rekoa sam mu da gleda na folder na disku za auto dodavanje *.torrent fileova.Htio bih s posla poslati mail sebi s torrent linkom u att. , mailu reći da attachmnet isfiltrira i baca u taj folder.kako te mail rules-e i applescript postaviti ?
Budem zaguglao , al velim ..možda netko ima sličan setup već..
Ja se baš zadnjih dana igram sa tagiranjem i rulovima i ne mogu vjerovat kako prije to nisam koristio a tako olakšava cijeli posao
@sbogadi
Znam za growl odprije al ja sam cijelo vrijeme mislio da je on shareware![]()
Sad sam tek na siteu vidio da je free a podžava i hrpu aplikacija ne samo mail ju-hu
Grow je poprilično korisna aplikacija ali zna biti i poprilično iritantna, ja sam jedno vrijeme trpio ( iz čiste lijenosti) svakih minutu dvije notify spamm da mi se netko ulogirao/odlogirao sa nekog IM. Dok nisam pukao pa podesio
using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application "Finder"
set theOutputFolder to "Macintosh HD:Users:mariomarijan:Desktop:TORRENTS:"
end tell
tell application "Mail"
repeat with theMessage in theMessages
--does the message have attachments? if not, then skip it
if (every mail attachment of theMessage) {} then
--save the attachment to the subfolder
set theAttachments to (every mail attachment of theMessage)
repeat with theAttachment in theAttachments
set thePath to (theOutputFolder as string) & (name of theAttachment)
--if same named file already exists in subfolder, skip it
--otherwise, save it and get its size
if not (exists (alias thePath of application "Finder")) then
save theAttachment in thePath
end if
end repeat
--set read status of theMessage to true
end if
end repeat
end tell
end perform mail action with messages
end using terms from