Non-default autoarchive settings recursively on subfolders?

Home » General Outlook opportunities » Outlook
Non-default autoarchive settings recursively on subfolders? [message #470520] Mon, 19 January 2009 15:52 Go to next message
dcWoodstock
Messages: 4
Registered: January 2009
Junior Member
How can I set auto-archive settings recursively on existing a new subfolders
within a folder in my mailbox?

I want my default auto-archive settings for my Inbox to stay at 3 months.
My Client Asset folder includes assets, so I want to archive it and all the
subfolder every month to keep mailbox size down. New subfolders are created
all the time.

Is there any way to do this that doesn't involve changing the properties of
each folder, one-by-one?
Re: Non-default autoarchive settings recursively on subfolders? [message #470530] Mon, 19 January 2009 16:17 Go to previous messageGo to next message
VanguardLH
Messages: 8593
Registered: September 2007
Senior Member
dcWoodstock wrote:

> How can I set auto-archive settings recursively on existing a new subfolders
> within a folder in my mailbox?
>
> I want my default auto-archive settings for my Inbox to stay at 3 months.
> My Client Asset folder includes assets, so I want to archive it and all the
> subfolder every month to keep mailbox size down. New subfolders are created
> all the time.
>
> Is there any way to do this that doesn't involve changing the properties of
> each folder, one-by-one?

The 2 choices that I know of:

- Global archive configuration options where you find "Apply these
settings to all folders now".
- Local archive property on a folder (which are the properties only for
that folder).



Re: Non-default autoarchive settings recursively on subfolders? [message #470545] Mon, 19 January 2009 16:35 Go to previous messageGo to next message
dcWoodstock
Messages: 4
Registered: January 2009
Junior Member
"VanguardLH" wrote:
> The 2 choices that I know of:
>
> - Global archive configuration options where you find "Apply these
> settings to all folders now".
> - Local archive property on a folder (which are the properties only for
> that folder).
>

From the research I've done, those appear to be the two choices that have
existed since 1999 or so.

I want new child folders to take on the Auto-Archive settings of the parent
folder, not the mailbox, and to be able to push Auto-Archive settings from a
parent down onto its subfolders. Both without changing Global settings.

This should work the same, as least from a UI perspective, as changing
permissions on your MyDocuments folder for example. You can push the changes
recursively onto all of the subfolders. You don't have to change properties
on each subfolder in turn.

Thank you
Re: Non-default autoarchive settings recursively on subfolders? [message #470594] Mon, 19 January 2009 18:06 Go to previous messageGo to next message
VanguardLH
Messages: 8593
Registered: September 2007
Senior Member
dcWoodstock wrote:

> "VanguardLH" wrote:
>> The 2 choices that I know of:
>>
>> - Global archive configuration options where you find "Apply these
>> settings to all folders now".
>> - Local archive property on a folder (which are the properties only for
>> that folder).
>>
>
> From the research I've done, those appear to be the two choices that have
> existed since 1999 or so.
>
> I want new child folders to take on the Auto-Archive settings of the parent
> folder, not the mailbox, and to be able to push Auto-Archive settings from a
> parent down onto its subfolders. Both without changing Global settings.
>
> This should work the same, as least from a UI perspective, as changing
> permissions on your MyDocuments folder for example. You can push the changes
> recursively onto all of the subfolders. You don't have to change properties
> on each subfolder in turn.
>
> Thank you

There are no "folders" inside of Outlook's message store which is a
*database*. That hierarchy is shown only to provide organizational
structure to the records in the database. While records can be
associated to a "folder", that is a grouping of those records that
hasn't a clue about the hierarchy that you see. After all, you can also
move those folders around wherever you want in the tree list of folders
inside of Outlook's message store.

What if you had a parent folder marked to "not archive" and then assumed
the same for all child folders. Then you move a child folder under a
different parent folder that did have archive enabled. So should that
moved folder keep the archive setting for its old parent or change to
use the archive settings for its new parent?

Folders in Outlook are not the same as folders in the file system for
the OS. There are no folders in Outlook's database, just a group
association for a set of records. Just because one program (the OS)
performs some function, like permissions, on some object doesn't mean
some other program will do the same in its emulation of the same object
that is merely used to show some structure to its data.

You would somehow have to add some code to Outlook which replaces the
"New Folder" context menu item. Instead of simply creating a new group
association (that is emulates a folder only in the UI of the program),
it would instead create the new "folder" but also capture the archive
settings for the object (i.e., folder) for which the context menu was
activated (i.e., the parent object). I don't believe this is something
that can be done with add-ons or COM plug-ins to Outlook as this
replaces internal code to Outlook; however, perhaps an add-on could add
another context menu entry, like "New Folder & Inherit Achive Settings".

Someone over at http://www.outlookcode.com/ might be able to help you
come up with some code, or someone over in the microsoft.*.vba groups.
Re: Non-default autoarchive settings recursively on subfolders? [message #471402] Thu, 22 January 2009 09:30 Go to previous messageGo to next message
dcWoodstock
Messages: 4
Registered: January 2009
Junior Member
"VanguardLH" wrote:

> There are no "folders" inside of Outlook's message store which is a
> *database*. That hierarchy is shown only to provide organizational
> structure to the records in the database. While records can be
> associated to a "folder", that is a grouping of those records that
> hasn't a clue about the hierarchy that you see. After all, you can also
> move those folders around wherever you want in the tree list of folders
> inside of Outlook's message store.
>
> What if you had a parent folder marked to "not archive" and then assumed
> the same for all child folders. Then you move a child folder under a
> different parent folder that did have archive enabled. So should that
> moved folder keep the archive setting for its old parent or change to
> use the archive settings for its new parent?
>
> Folders in Outlook are not the same as folders in the file system for
> the OS. There are no folders in Outlook's database, just a group
> association for a set of records. Just because one program (the OS)
> performs some function, like permissions, on some object doesn't mean
> some other program will do the same in its emulation of the same object
> that is merely used to show some structure to its data.
>
> You would somehow have to add some code to Outlook which replaces the
> "New Folder" context menu item. Instead of simply creating a new group
> association (that is emulates a folder only in the UI of the program),
> it would instead create the new "folder" but also capture the archive
> settings for the object (i.e., folder) for which the context menu was
> activated (i.e., the parent object). I don't believe this is something
> that can be done with add-ons or COM plug-ins to Outlook as this
> replaces internal code to Outlook; however, perhaps an add-on could add
> another context menu entry, like "New Folder & Inherit Achive Settings".
>
> Someone over at http://www.outlookcode.com/ might be able to help you
> come up with some code, or someone over in the microsoft.*.vba groups.

Thanks, Vanguard, I will look into that.
Re: Non-default autoarchive settings recursively on subfolders? [message #471403] Thu, 22 January 2009 09:30 Go to previous messageGo to next message
dcWoodstock
Messages: 4
Registered: January 2009
Junior Member
"Brian Tillman [MVP - Outlook]" wrote:

> There is no such facility (unless you write the code yourself). There
> really is no such thing as parent/child folders in Outlook. It just looks
> that way. You can have mail subfolders of Contacts, Calendar subfolders of
> mail, and other combinations as well. A folder is a folder, as far as
> Outlook is concerned and none inherit anything from the "parent". Position
> in the hierarchy bestows nothing special.
> --

Thanks, Brian.

I just get frustrated as I have several categories of emails and I want to
be able to create rules to automatically set archive settings on the folders
that contain them.

Some things I need to have access to on the server for longer periods of
time than others.
Re: Non-default autoarchive settings recursively on subfolders? [message #621145] Thu, 07 January 2010 08:44 Go to previous messageGo to next message
npgall
Messages: 1
Registered: January 2010
Junior Member
Outlook mail is folder-based. Whether this is or is not the case in its internal database is irrelevant.

Outlook presents a folder structure to the user, therefore Outlook mail is folder-based.

I think it is absurd to make excuses for the lack of an "apply these archive settings to all subfolders" option. I just migrated to a new domain and now I will have to waste time tediously editing archive settings on every subfolder I had created? Unbelievable.

This feature does not exist in Outlook because Microsoft have dropped the ball. I found discussions on the lack of this feature going back 10 years. Unbelievable.
icon8.gif  Re: Non-default autoarchive settings recursively on subfolders? [message #630943] Sat, 30 January 2010 16:59 Go to previous messageGo to next message
ChrisBedford
Messages: 1
Registered: July 2007
Location: Cape Town, South Africa
Junior Member
@ npgall: Mad Hear, hear.

The previous posts do a great job of "explaining" why something can't be done, but the excessive rationalisation does start to sound a lot like "excuses, excuses" - Outlook has had the ability to set *folder*-level archive (and other) properties for so long, and yet no mechanism for propagating or inheriting.

As you say, unbelievable. Still not available in version 2007, and 2010 is in beta - I don't have the bandwidth to download it, can anyone report if this serious omission has been corrected in that release?
Re: database is the problem [message #1202405] Fri, 30 July 2010 10:39 Go to previous message
ericole
Messages: 1
Registered: July 2010
Junior Member
And this is just ANOTHER reason why Outlook's use of a single database for the mail backend is a BAD choice. Not only can you lose EVERYTHING if that database gets corrupted, but apparently user functionality is diminished.

I still think this is for the lock-in effect of Outlook. Very hard to get data in and out to use in other programs if you wanted to migrate away from Outlook.
Previous Topic:Outlook 2007 - Request a Read Receipt - Question/Problem
Next Topic:Customisation of Email Composition Forms
Goto Forum:
  


 
   
  
 
Top Outlook add-ins
Duplicate Email RemoverDuplicate Email Remover

Delete duplicate emails and posts in Outlook and Microsoft Exchange folders.

Duplicates Remover for OutlookDuplicates Remover for Outlook

Delete duplicates in Microsoft Outlook and Microsoft Exchange Server folders.

Mail Merge ToolkitMail Merge Toolkit

Microsoft Office add-in to improve mail merging in Outlook, Word and Publisher.

MAPILab ToolboxMAPILab Toolbox

A set of 18 Microsoft Outlook 2000/XP/2003/2007 add-ins.

Total 178 add-ins for Outlook
in 11 categories.

Latest news
  

© 2006-2013 Office Assistance LLC