11

I want to look at some options that will help to manage the size of an Exchange mailbox. There are lots of utilities out there that will extract an attachment from an email and replace it with a file:// URL link.

Now comes the wrinkle - the file:// URL works great on Windows - what is the equivalent on the Mac?

Jens Erat
  • 18,485
  • 14
  • 68
  • 80

3 Answers3

14

Try using file:///URL

You need the extra forward slash to signify the root directory of the drive.

6

Try using this syntax

smb://FILE PATH

0

The following two outgoing email syntaxes should work for Mac recipients, even when the path or filename contains spaces.

\hostname\full%20path%20to%20file

or

smb://hostname/full%20path%20to%20file

Mac Mail will not convert the text into a blue link until after your message is sent. Remmeber to replace each space with %20 .

For sending to Windows recipients, this works:

<\hostname\full path to file>

But I have not found a single syntax that works for both kinds of recipients.

Randy
  • 111