We've expanded our news coverage and improved our search! Visit
news.oreilly.com for the latest or search for all things across O'Reilly!
| Hack: |
|
Interleave Mail and Pine
|
| Subject: |
|
Re: punctuation |
| Date: |
|
2004-09-29 18:44:56 |
| From: |
|
JamesM
|
|
|
|
I had better luck converting the two "ln -s" lines to use symlink:
or `ln -s "$account_dir/$1/Sent Messages.mbox/mbox" "$mail_dir/sent-mail"`;
becomes
or symlink("$account_dir/$1/Sent Messages.mbox/mbox", "$mail_dir/sent-mail");
and
or `ln -s $File::Find::name $mail_dir/$path/$mbox.mbox`;
becomes
or symlink($File::Find::name, "$mail_dir/$path/$mbox.mbox");
|