IT
Outlook 365 / Exchange E-mail settings
4 min
add new user normally we will add a user from the local domain controller then add the license subscription after the new user synced and can be seen from the o365 this is the only way for editing/creating user while your active directory sync from local to the o365 how to add email alias to user (azure active sync active) open "active directory users and computers” from domain controller go to "view" and check "advance features" right click on target user > properties > attribute editor tab go to "proxyaddresses" then add the alias email with the format smtp\ useralias\@garden vicew\ com (note using capital letters as smtp\ useralias\@domain com ; this will be default reply address) click "ok" to save and wait for up to 3 hours for active directory sync to o365 make outlook default to "tasks" instead of "to do list" create self signed signature (open root file location of outlook > "selfcert exe" > create new with user's name in outlook tasks, press alt + f11 to open vba editor, paste this code in project1, current session dim withevents objpane as navigationpane private sub application startup() set objpane = application activeexplorer navigationpane end sub private sub objpane moduleswitch(byval currentmodule as navigationmodule) dim objmodule as tasksmodule dim objgroup as navigationgroup dim objnavfolder as navigationfolder if currentmodule navigationmoduletype = olmoduletasks then set objmodule = objpane modules getnavigationmodule(olmoduletasks) set objgroup = objmodule navigationgroups("my tasks") ' change the 2 to start in a different folder set objnavfolder = objgroup navigationfolders item(2) objnavfolder isselected = true end if set objnavfolder = nothing set objgroup = nothing set objmodule = nothing end sub under tools > digital signature > add the self signed signature you created save the script, close outlook and confirm the dialogs