Exchange Server stopped accepting internet email, but will transmi - Microsoft Exchange |
- Exchange Server stopped accepting internet email, but will transmi
- OWA and Exmerge problems
- Address book disapeared
- Exchange using 50-100% CPU
- What ports do outlook use to connect to exchange
- Exchange 2003 trial
- Primary email address not stay in AD
- Problem with custom recipients and free/busy
- Exchange 2003 exmerge error/misc
- ESE APIs for Backup & Restore
- Automatic reply to customer inquiries
- User cannot receive email from outside of the org
- Exchange 2003 and Windows Server 2003
- Adding disclaimers.... Sort of
- How can I create DVD with Exchange 2007 ISO
- Offline Address book errors
Exchange Server stopped accepting internet email, but will transmi Posted: 14 Jan 2007 02:48 PM PST Thank you for your quick reply. I will answer these questions, then seek your further advice. Look for my response on Tuesday, Jan 16th. Again, thank you. "Bharat Suneja [MVP]" wrote: |
Posted: 14 Jan 2007 11:08 AM PST Yes i have done that and doesnt seem to help. im wondering if it has anything to do with the users that were transfered from the nt4 domain. the only thing i dont get about ad is that why is there a place for two different account logins like we have xxx.xxx.local and the old xxx_xxxxxx-XX logins but its like wins or something ? but we dont run wins so i wont if the new accounts are going to local and the old account on the xxx_xxx-XX accounts??? thanks //dev |
Posted: 12 Jan 2007 09:49 PM PST I have applyed the article but it did not have any effect on the problem "Leif Pedersen [MVP]" wrote: |
Posted: 12 Jan 2007 06:21 PM PST If you are seeing this a lot I would open a support case with PSS. This can indicated that one of the store threads is spinning out of control working on something and or is waiting on another thread to complete it's tasks. -- This posting is provided "AS IS" with no warranties, and confers no rights. Dgoldman http://blogs.msdn.com/dgoldman "serge" <ehmail.com> wrote in message news:%phx.gbl... |
What ports do outlook use to connect to exchange Posted: 11 Jan 2007 08:32 AM PST On Thu, 11 Jan 2007 17:40:14 -0000, "Glenn Clark" <btinternet.com> wrote: Who, in the name of all that is holy, told you that piece of rubbish? Of course SSL VPN's create a tunnel. First thing to do is to follow that Lanwench told you about RPC over HTTPS and scrap the VPN requirement. That needs TCP443 opening only, nothing else. As for the insistence of using an SSL VPN, when you connect to the web page it presents you can publish a few items on it such as an Intranet site or OWA etc. etc. If you want to use Outlook or SAP or whatever else you will execute what Juniper call "Secure Application Manager" which puts a small client install onto the local PC and creates a tunnel. You then configure the VPN hardware at the central office, telling it that you are allowing Outlook for these people and that your Exchange server is on IP address(s)....... |
Posted: 11 Jan 2007 05:31 AM PST "Jim Hatfield" <com> wrote in message news:com... for These kind of books often turn up on eBay for a good price. There are all kinds of MS Press books (Resource Kits, training books, etc.) that have a demo CD. Lee. -- _______________________________________ Outlook Web Access For PDA , OWA For WAP www.owapda.com email a@t leederbyshire d.0.t c.0.m _______________________________________ |
Primary email address not stay in AD Posted: 10 Jan 2007 06:12 AM PST Thank Ed. Have a good day. "Ed Crowley [MVP]" <org> wrote in message news:phx.gbl... |
Problem with custom recipients and free/busy Posted: 09 Jan 2007 11:46 AM PST On Wed, 10 Jan 2007 04:38:00 -0800, Brendon B <microsoft.com> wrote: They are AD Contacts (Mail Enabled). If your free/busy on the Outlook is going awry for a couple of users, although not all, you will need to do this as part of your diagnostics steps. They aren't quite the same as "Custom Recipients" (I can tell you've been around since 5.0/5.5) |
Exchange 2003 exmerge error/misc Posted: 09 Jan 2007 08:28 AM PST "(CopyMessagesToDestFolder)0x80040115 And the exmerge process stopped at that point." and "We also are experiencing intermittent problems where OWA and outlook cannot recieve mail. The only solution was to restart the server" would imply that this is a network issue. What version of the OS and what SP are you at on the Exchange server? If windows 2003 SP1, have you applied kb 898060? John "jason sigurdur" <org> wrote in message news:phx.gbl... |
Posted: 09 Jan 2007 05:45 AM PST Dear Friend, Here is the code snippet in which the error is generated. So if you could figure out what could be the reason please inform me. I have other two questions: 1. Do we need to do some initialization before Calling any ESE Restore Function? If yes please detail me about the same. 2. Do we need to inform/send some information that ESE Restore Process may be expecting // TrialProject.cpp : Defines the entry point for the console application. int main(int argc, char* argv[]) { char lszValue[200]; LONG lRet; HKEY hKey; DWORD dwLength=200; DWORD dwType=REG_SZ; DWORD dwSize=255; TOKEN_PRIVILEGES tp; HANDLE hToken; LUID luid; LPTSTR MachineName=NULL; // pointer to machine name DWORD dwSubKeyIndex=0; // index into key DWORD dwSubKeyLength=_MAX_FNAME; // length of SubKey buffer MachineName="AGARTALA"; // // enable Restore privilege // if(!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken )) { PERR("OpenProcessToken", GetLastError() ); return 2; } if(!LookupPrivilegeValue(MachineName, SE_RESTORE_NAME, &luid)) { PERR("LookupPrivilegeValue", GetLastError() ); return 2; } tp.PrivilegeCount = 1; tp.Privileges[0].Luid = luid; tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; AdjustTokenPrivileges(hToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), NULL, NULL ); if (GetLastError() != ERROR_SUCCESS) { PERR("AdjustTokenPrivileges", GetLastError() ); return 2; } lRet = RegOpenKeyEx (HKEY_LOCAL_MACHINE, "SYSTEM\\CurrentControlSet\\Control\\BackupRestore \\DLLPaths", 0L, KEY_READ , &hKey); if(lRet == ERROR_SUCCESS) { lRet = RegQueryValueEx(hKey, "Esebcli2", NULL, &dwType,(LPBYTE)&lszValue, &dwSize); } RegCloseKey(hKey); typedef HRESULT (ESEBACK_API *HrESERestoreOpen)( IN WCHAR * wszServerName, IN WCHAR * wszServiceAnnotation, IN WCHAR * wszSrcInstanceName, IN WCHAR * wszRestoreLogPath, OUT HCCX * phccxRestoreContext ); HrESERestoreOpen fnHrESERestoreOpen = NULL; HRESULT hr; LPVOID lpMsgBuf; HINSTANCE hMod; if (GetProcAddresses( &hMod, lszValue, 14, &fnMNUBackupRestoreGetNodes, "HrESEBackupRestoreGetNodes", &fnESEBackupRestoreFreeNodes, "ESEBackupRestoreFreeNodes", &fnHrESERestoreOpen, "HrESERestoreOpen", &fnHrESERestoreWriteFile, "HrESERestoreWriteFile", &fnHrESERestoreAddDatabase, "HrESERestoreAddDatabase", &fnHrESERestoreAddDatabaseNS, "HrESERestoreAddDatabaseNS", &fnHrESERestoreOpenFile, "HrESERestoreOpenFile", &fnHrESERestoreCloseFile, "HrESERestoreCloseFile", &fnHrESEBackupGetLogAndPatchFiles, "HrESEBackupGetLogAndPatchFiles", &fnHrESERestoreSaveEnvironment, "HrESERestoreSaveEnvironment", &fnHrESERestoreComplete, "HrESERestoreComplete", &fnHrESERestoreClose, "HrESERestoreClose", &fnHrESEBackupRestoreGetRegistered, "HrESEBackupRestoreGetRegistered", &fnESEBackupRestoreFreeRegisteredInfo, "ESEBackupRestoreFreeRegisteredInfo" ) == FALSE){ printf ("--ERROR LoadLibrary failed\n"); FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(), 0, // Default language (LPTSTR) &lpMsgBuf, 0, NULL ); printf( (LPCTSTR)lpMsgBuf); LocalFree( lpMsgBuf ); return 1; } BACKUP_NODE_TREE* pBackupNodeTree = NULL; hr = fnMNUBackupRestoreGetNodes (L"localhost", &pBackupNodeTree); //FormatMessage &GetLastError called WCHAR *Server = pBackupNodeTree->wszName; WCHAR *ServerName = pBackupNodeTree->pChildNode->wszName; wprintf(L"Server: %s\n", Server); wprintf(L"Server Name: %s\n", ServerName); unsigned long cRegisteredInfo; ESE_REGISTERED_INFO *paRegisteredInfo; hr = fnHrESEBackupRestoreGetRegistered( L"localhost" , Server , 0x00000004 , /*0x00000002 ONLINE*/ //0x00000004 ESE_REGISTER_OFFLINE_RESTORE &cRegisteredInfo, &paRegisteredInfo); //FormatMessage &GetLastError called printf("Number Registered: %d\n", cRegisteredInfo ); wprintf(L"Registered Annotation: %s\n", paRegisteredInfo->wszEndpointAnnotation ); HCCX phccxRestoreContext; wprintf(L"Server Name: %s\n", ServerName); hr = fnHrESERestoreOpen ( ServerName, paRegisteredInfo->wszEndpointAnnotation, L"First Storage Group", //ESE Instance service name which was handling database L"c:\\Temp_Log", &phccxRestoreContext ); //Here code returns hr=0x000003E6 & GetlastError() returns 1008 if (hr != S_OK) { printf("--ERROR HRESULT RestoreOpen : %X ,GetLastError : %d\n" , hr,GetLastError()); FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(), 0, // Default language (LPTSTR) &lpMsgBuf, 0, NULL ); printf( (LPCTSTR)lpMsgBuf); LocalFree( lpMsgBuf ); FreeLibrary (hMod); return -1; } -- Vinay Jain "Dave Goldman [MSFT]" wrote: |
Automatic reply to customer inquiries Posted: 05 Jan 2007 07:08 PM PST Hi, Thank you for posting back. I'm glad to hear that this issue was resolved, if you have any other technical questions in the future, please do not hesitate to post in this newsgroup. I look forward to work with you again. Have a nice day! Best Regards, Chace Zhang (MSFT) Microsoft CSS Online Newsgroup Support -------------------- | Thread-Topic: Automatic reply to customer inquiries | thread-index: AcczasJi2zwHKpIhT1CTOMjWYwQ1Ug== | X-WBNR-Posting-Host: 64.132.65.146 | From: =?Utf-8?B?WWF0eg==?= <nospam> | References: <com> <6u#phx.gbl> | Subject: RE: Automatic reply to customer inquiries | Date: Mon, 8 Jan 2007 13:20:02 -0800 | Lines: 122 | Message-ID: <com> | MIME-Version: 1.0 | Content-Type: text/plain; | charset="Utf-8" | Content-Transfer-Encoding: 7bit | X-Newsreader: Microsoft CDO for Windows 2000 | Content-Class: urn:content-classes:message | Importance: normal | Priority: normal | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2757 | Newsgroups: microsoft.public.exchange.misc | Path: TK2MSFTNGHUB02.phx.gbl | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.exchange.misc:516 | NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148 | X-Tomcat-NG: microsoft.public.exchange.misc | | Thank you both for your responses. I created a public folder and set up the | auto response as a rule as mentioned below. Thanks again!. | | | "chace zhang" wrote: | | > Hi, | > | > Thank you for posting here. | > | > According to your description, I understand you want to enable Auto reply . | > | > Based on my experience, there is no build-in feature on Exchange Server | > that sending an automatic message to sender. You may consider using outlook | > client to create a server side rule to achieve your goal. | > Note; This doesn't require outlook to be running. | > | > To do so: | > 1. Open Outlook. | > 2. Right click on the public folder, select Properties. | > 3. Under Administration, click Folder Assistant. | > 4. Click Add Rule. | > 5. In Edit Rule page, please click the check box to "Reply with" and fill | > an Auto-Reply text by clicking Template... | > 6. Click OK three times to finish the configuration. | > 7. Restart Outlook and test the issue. | > | > For more information, please refer to the following article. | > | > How to create a rule to enable automatic replies to users who post messages | > to a public folder in Outlook 2003 | > http://support.microsoft.com/?id=903289 | > | > At the same time, we may also achieve this by creating an event sink on the | > Exchange server side and use it to reply the incoming e-mails based on the | > criteria as you want. If you need further assistance on how to develop the | > event sink, you may go to our development newsgroup. | > | > They are located at: | > http://msdn.microsoft.com/newsgroups/default.asp | > | > I hope the information above is helpful. If you need more helps, please do | > not hesitate to let me know. | > | > Have a nice day! | > | > Best Regards, | > | > Chace Zhang (MSFT) | > | > Microsoft CSS Online Newsgroup Support | > | > Get Secure! - www.microsoft.com/security | > | > ================================================== === | > This newsgroup only focuses on Exchange technical issues. If you have | > issues regarding other Microsoft products, you'd better post in the | > corresponding newsgroups so that they can be resolved in an efficient and | > timely manner. You can locate the newsgroup here: | > http://www.microsoft.com/communities/newsgroups/en-us/default.aspx | > | > When opening a new thread via the web interface, we recommend you check the | > "Notify me of replies" box to receive e-mail notifications when there are | > any updates in your thread. When responding to posts via your newsreader, | > please "Reply to Group" so that others may learn and benefit from your | > issue. | > | > Microsoft engineers can only focus on one issue per thread. Although we | > provide other information for your reference, we recommend you post | > different incidents in different threads to keep the thread clean. In doing | > so, it will ensure your issues are resolved in a timely manner. | > | > For urgent issues, you may want to contact Microsoft CSS directly. Please | > check http://support.microsoft.com for regional support phone numbers. | > | > Any input or comments in this thread are highly appreciated. | > | > ================================================== === | > | > This posting is provided "AS IS" with no warranties, and confers no rights. | > | > | > -------------------- | > | Thread-Topic: Automatic reply to customer inquiries | > | thread-index: AccxEuRgQeZ0CAsoScKVfMZyi8cGIg== | > | X-WBNR-Posting-Host: 64.132.65.146 | > | From: =?Utf-8?B?WWF0eg==?= <nospam> | > | Subject: Automatic reply to customer inquiries | > | Date: Fri, 5 Jan 2007 13:46:01 -0800 | > | Lines: 10 | > | Message-ID: <com> | > | MIME-Version: 1.0 | > | Content-Type: text/plain; | > | charset="Utf-8" | > | Content-Transfer-Encoding: 7bit | > | X-Newsreader: Microsoft CDO for Windows 2000 | > | Content-Class: urn:content-classes:message | > | Importance: normal | > | Priority: normal | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2757 | > | Newsgroups: microsoft.public.exchange.misc | > | Path: TK2MSFTNGHUB02.phx.gbl | > | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.exchange.misc:496 | > | NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148 | > | X-Tomcat-NG: microsoft.public.exchange.misc | > | | > | Our marketing department wants to put an email address out there to | > receive | > | customer questions. We would like two marketing employees to receive | > these | > | emails. They also want the customer to be sent an email response | > thanking | > | them for their inquiry. | > | | > | I was told this can be done through a public folder and setting up a | > | template; is this the best way or are there any other commonly accepted | > | methods to accomplish this? | > | | > | We are running Exchange 2003 and Outlook 2000. | > | | > | > | |
User cannot receive email from outside of the org Posted: 05 Jan 2007 12:39 PM PST thanks for replying! However, I don't find the messages in any of those locations and there are no rules defined. I also don't find any Antispam settings either at the client or server. Junkmail foler is empty as well Bharat Suneja [MVP] wrote: |
Exchange 2003 and Windows Server 2003 Posted: 05 Jan 2007 12:34 PM PST Before you upgrade Forest mode to Windows Server 2003 native, if you plan to do so - you may need to change the ldap filter on Mailbox Enable User policy: Recipient Update Service may overwrite the value of the homeMDB attribute for new Exchange Server 2003 users http://support.microsoft.com/kb/903291 -- Bharat Suneja MVP - Exchange www.zenprise.com NEW blog location: www.exchangepedia.com/blog ---------------------------------------------- "Kate Townsend" <org> wrote in message news:phx.gbl... |
Adding disclaimers.... Sort of Posted: 04 Jan 2007 11:19 AM PST >>Random? To expand further. To randomly select one line from a file or database of quotes Steve "Mark Arnold [MVP]" <org> wrote in message news:com... |
How can I create DVD with Exchange 2007 ISO Posted: 04 Jan 2007 10:26 AM PST "Josh" <nospam> wrote in message news:phx.gbl... Maybe something like this: http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm Lee. -- _______________________________________ Outlook Web Access For PDA , OWA For WAP www.owapda.com email a@t leederbyshire d.0.t c.0.m _______________________________________ |
Posted: 04 Jan 2007 06:47 AM PST Outstanding!! -- This posting is provided "AS IS" with no warranties, and confers no rights. Dgoldman http://blogs.msdn.com/dgoldman "Johan Strange" <microsoft.com> wrote in message news:com... Thanks for your replies guys. Thats a great article Dave, I did however find that there was missing infomation in the replication tab of Offline Address Book on System folder view in ESM. I corrected this and rebuilt the OAB which appears to have resolved the issue. "Dave Goldman [MSFT]" wrote: |
You are subscribed to email updates from TextNData Forums - Microsoft Exchange To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |