Navigation

    ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. public folder
    Log in to post

    • Exchange / Office 365 Auto Response from Public Folder
      IT Discussion • office 365 email exchange public folder • • scottalanmiller  

      7
      0
      Votes
      7
      Posts
      334
      Views

      @dbeato said in Exchange / Office 365 Auto Response from Public Folder: @scottalanmiller said in Exchange / Office 365 Auto Response from Public Folder: @travisdh1 said in Exchange / Office 365 Auto Response from Public Folder: @scottalanmiller said in Exchange / Office 365 Auto Response from Public Folder: We have a public folder on Office 365 that is email enabled, the customer would like an auto-response from the public folder. I'm not sure if that is even possible. Wouldn't that be an auto-response setup from one of the accounts that receives those emails? Does that work with a public folder? Yes, with Folder Assistant through Outlook. Otherwise you can create a rule for incoming emails through Office 365 to accomplish that too. Yeah, seems... poor. Found this for doing it through Outlook, which would be unreliable and clearly not useful. https://www.codetwo.com/admins-blog/setting-public-folder-auto-reply/
    • Office 365 Public Folder Cannot Receive Mail
      IT Discussion • office 365 exchange public folder • • scottalanmiller  

      18
      0
      Votes
      18
      Posts
      1051
      Views

      M

      @aaronstuder : After several minute delays between their replies, they'll eventually give you a phone number to call instead...
    • O365 Public Folder: Script to Delete OLD items
      IT Discussion • powershell o365 management politics public folder retention • • gjacobse  

      4
      0
      Votes
      4
      Posts
      393
      Views

      sadly - setting this didn't work as the 'mailbox' doesn't exist... Curse you MS
    • List All Public Folders in Exchange or Office 365 with PowerShell
      IT Discussion • office 365 powershell email exchange o365 public folder get-publicfolder • • scottalanmiller  

      2
      2
      Votes
      2
      Posts
      1227
      Views

      @scottalanmiller said in List All Public Folders in Exchange or Office 365 with PowerShell: Want to get a list of all of the public folders on your Exchange system, whether on premises or hosted, try this: Get-PublicFolder -Identity "\" -Recurse | Get-PublicFolderClientPermission | where{$_.Accessrights -eq "owner"} More on Get-PublicFolder from TechNet That's pretty cool. I was wondering why you were piping into every owner since you could create public folders in Exchange without delegating owners, but then I had remembered you can create them on the client side as well after a root or folders are created in Exchange and added to the client, which is explained in your first pipe. Thanks for the note.