Newer GW7 GW for Exchange 2003 than 7/22/2008?

Hello Novell Support,
We are having an issue where the gateway chokes on particular emails on a daily baisis and shuts down automatically. If it weren't for GroupWise monitor, we wouldn't even know it had shut down. So on a daily basis at random times we have to go into Exchange 2003 System Manager and delete the email in the queue that the GW7 Gateway is choking, freezing, and crashing/shutting down on, and then restart the gateway. We have the 7/22/2008 version of the gateway, and was wondering if a newer version exists?
Thanks,
Scott

scottb,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Converting a VBScript for Exchange 2003 to Function the same for Exchange 2010

    Converting a VBScript for Exchange 2003 to Function the same for Exchange 2010
    Afternoon;
    I've run into a problem at this time.  We are currently looking into migrating from Exchange 2003 into Exchange 2010 and I'm finding that my normal data collection method is no longer usable in Exchange 2010.  I have the script posted below as of
    what I'm currently using to collect my information, I just need to know of a means to continue the collection when we move to the new Exchange server.  Any assistance in getting this to function with Exchange 2010 would be great.
    ++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++++++++++++++
    On Error Resume Next
    'Date Stamp for File Name
    Function TIMESTAMP
      strDate = CDate(Date)
      strDay = DatePart("d", strDate)
      strMonth = DatePart("m", strDate)
      strYear = DatePart("yyyy", strDate)
      If strDay < 10 Then
        strDay = "0" & strDay
      End If
      If strMonth < 10 Then
        strMonth = "0" & strMonth
      End If
      TIMESTAMP = strYear & strMonth & strDay
    End Function
    'Drop Location Vars Set
    DRP01 = 1
    DRP02 = 1
    'Live Check SQL04
    strVIC = "SQL04"
    Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\.\root\cimv2")
    Set colItems = objWMIService.ExecQuery ("Select * from Win32_PingStatus Where Address = '" & strVIC & "'")
    For Each objItem in colItems
        DRP01 = objItem.StatusCode
    Next
    'Live Check FS02
    strVIC = "FS02"
    Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\.\root\cimv2")
    Set colItems = objWMIService.ExecQuery ("Select * from Win32_PingStatus Where Address = '" & strVIC & "'")
    For Each objItem in colItems
        DRP02 = objItem.StatusCode
    Next
    'Setup STOREDIR Location
    If DRP01 = 0 Then
        STOREDIR = "\\SQL04\Email\Collected\" 'Primary Data Storage Location
        Else
        If DRP02 = 0 Then
            STOREDIR = "\\FS02\Shared\MIS\Daniel\" 'Secondary Data Storage Location
            Else
            STOREDIR = "C:\Scripts\Logs\" 'Tertiary Data Storage Location
        End If
    End If
    'STOREDIR Check for Availability
    Set fso = CreateObject("Scripting.FileSystemObject")
    If fso.FolderExists(STOREDIR) Then
        AVAIL = 1
        Else
        AVAIL = 0
    End If
    'Sets Failsafe STOREDIR
    If AVAIL = 0 Then
        STOREDIR = "C:\Scripts\" 'Last Chance DIR for Data Files
    End If
    'Sets Filename
    FILENAME = TIMESTAMP & ".csv"
    'Testing Purposes Only
    'wscript.echo TIMESTAMP
    'wscript.echo STOREDIR & vbNewLine & FILENAME & vbnewline & vbnewline & AVAIL
    'Sets Process Variables
    cComputerName = "EXCH02" ' Exchange Server Name or IP Address
    DIM fso, ObjFile
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set ObjFile = fso.CreateTextFile(STOREDIR & FILENAME, True)
    'ObjFile.WriteLine("Date,Display Name,Size(KB)")
    Const cWMINameSpace = "root/MicrosoftExchangeV2"
    Const cWMIInstance = "Exchange_Mailbox"
    Dim strWinMgmts            
    Dim objWMIExchange   
    Dim listExchange_Mailboxs  
    Dim objExchange_Mailbox           
    strWinMgmts = "winmgmts:{impersonationLevel=impersonate}!//" & cComputerName &"/" & cWMINameSpace
    Set objWMIExchange =  GetObject(strWinMgmts)
    'Checks for Email Record and Records to File
    If Err.Number <> 0 Then
      ObjFile.WriteLine("ERROR:" & VBNEWLINE & Err.Number & VBNEWLINE & Err.Description)
    Else
      Set listExchange_Mailboxs = objWMIExchange.InstancesOf(cWMIInstance)
      If (listExchange_Mailboxs.count > 0) Then
        For Each objExchange_Mailbox in listExchange_Mailboxs
           ObjFile.WriteLine(TIMESTAMP & "," & objExchange_Mailbox.MailboxDisplayName & "," & objExchange_Mailbox.Size)
        Next
      Else
        ObjFile.WriteLine("WARNING: No Exchange_Mailbox instances were returned.")
      End If
    End If
    ObjFile.Close
    VBScript is what I prefer. All scripts must have a kill switch to manage them from a primary location. Mine, is an updater method.
    VBScript is what I prefer. All scripts must have a kill switch to manage them from a primary location. Mine, is an updater method.

    Okay, then what about an alternative for getting the same result. The file associated in the article is too much.  All we need is something simple for a single exchange server with 180 users.  We only need to pull UserName and DataSize(KB).
    I only need to collect two pieces of information from the exchange server and the third piece is forced due to the date of when the information was collected.  This way I can sort and filter by Date and Name to see a trend of the users mailbox usage
    size.
    Every day this runs, it determines the date of the file which is also the first piece, then pulls from the exchange server the entire list of users (the second piece), and then the respective user's mailbox size in KB (the third piece).  This all is
    dropped into a CSV file later used to import into a database before being archived, done by a second task on the server.  Later used by a shared Excel PowerPivot document among the department.
    Those of us in the server admin group use this to, at a glance, see the collective size of email usage on the server.  Mainly used as a means of catching an incident before it happens.  We are currently keeping our users around a collective 80GB
    of use out of the well received limit of 110GB on Exchange 2003 and limiting the user's ability to send and receive email by email quota is apparently not accepted for us to do.  So we use this to determine who we need to visit and force archive their
    email so the server doesn't fail due to the size limit.
    VBScript is what I prefer. All scripts must have a kill switch to manage them from a primary location. Mine, is an updater method.

  • Does anyone know if iOS 7 has support for Exchange 2003?

    Does anyone know if iOS 7 has support for Exchange 2003?

    All previous versions of iOS have had support for Exchange 2003.  Of course, more functionality is available with Exchange 2007/2010 support than 2003, but that's due to limitations in what the protocols support.

  • New E72 Mail for exchange problem--end of emails c...

    Hello,
    As I can't seem to find anyone who is having this problem, I thought I'd start a new thread.
    We are running 5 E72s (T-Mobile UK customised firmware version 031.023), using Mail for Exchange with Exchange 2003 sp2. Since updating to 031.023 from 021.024 (022.007 wasn't realised for T-Mobile UK product code), Mail for Exchange has basically worked okay (finally!!), but we've noticed that it sometimes cuts off the ends of emails, which has a major negative business impact. Has anyone else experienced this problem? Any ideas on how to solve it?
    In the meantime, we've switched to running Roadsync, which is less elegant (and much slower) than Mail for Exchange, but has the advantage of basically working.
    Many thanks,
    Paul

    I have had exactly the same problem with all previous versions of firmware, connecting to Exchange 2003, SP2
    I am currently running:
    -Product code: 0595585
    -Firmware: 054.005
    -Custom version: 054.005.275.04
    -Mail for Exchange version: 2.2.0
    I have tried all the same solutions as DCBertisen (software update, new install without backup).
    I had tested the same installation with roadsync on symbian, roadsync on android, native exchange on android and windows mobile, and all of these work fine.
    I have now moved to Exchange 2010, and it appears (touch wood) that I no longer am having these problems. However, I have only been using Exchange 2010 for 3 weeks, so I fear they may happen again.

  • Creating a new address list for Exchange Online (Office 365) by two parameters

    Good day!
    I need to create two new address list in Exchange Online 2013 (Office 365) that users will choose the two parameters.
    Address sheet1: No staff
    Address Sheet2: Staff
    Parameters address sheet not staff:
    Parameter 1: Company
    It must match the value - MyCompany
    Parameter 2: job title
    it must be different from the value - Staff
    Parameters address sheet Staff:
    Parameter 1: Company
    It must match the value - MyCompany
    Parameter 2: job title
    It must match the value - Staff
    Problems:
    1) Is it possible to filter user mailboxes on the parameter of discrepancy?
    2) Can not find the parameter values ​​for the script field job title
    https://technet.microsoft.com/ru-ru/library/aa996912%28v=exchg.150%29.aspx
    https://technet.microsoft.com/en-us/library/bb738157%28v=exchg.150%29.aspx
    While on the side of 365 in the user properties such parameter is:
    http://joxi.ru/MAj0Jj7hGyDbme
    Company option too.

    I got to build a team that I need (describes the necessary conditions)
    and successfully held in PS 4.0 after connecting to the office 365:
    1) Set-ExecutionPolicy unrestricted
    2) $ UserCredential = Get-Credential
    (Data Entry Administrator 365)
    3) $ Session = New-PSSession -ConfigurationName
    Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $ UserCredential -Authentication Basic -AllowRedirection
    Import-PSSession $ Session
    4)
    PS C:\Windows\system32> New-AddressList -Name 'TEST1234' -RecipientFilter {((RecipientType -eq 'UserMailbox') -and ((Com
    pany -eq 'Company1') -and (Title -ne 'Student')))}
    Name                      DisplayName               RecipientFilter
    TEST1234                  TEST1234                  ((RecipientType -eq 'UserMailbox')
    -and (((Company -eq 'Company1...
    As a result, the new address list TEST1234 immediately appears. (When creating a new letter in the menu "To"), but on the inside
    it is empty (although there is 1 user which is fully consistent with those described in the filter conditions.).
    = (
    Tried a simple version:
    Office365
    не отображается в адресном списке.">The same thing - the only user with such parameters in AD -> Office365 is not displayed in the address list.
    (After running for a list TEST123 more than two days)
    Tell me what could be the problem?

  • Namespace for Exchange 2003 == 2010 == 2013 Migration

    Hi
    Hope someone can help.  I am working on an Exchange 2003 to 2010 migration, which will then quickly move onto a 2010 to 2013 migration and need some clarification on the namespaces to use.  I am aware that if I do not do this right at the 2003
    to 2010 migration, this will cause a headache at the 2010 to 2013 migration.
    Some background:
    2003 Functional Level Domain - 2 x 2008 DC's
    Currently users are on a 2003 exchange cluster with a mix of RPC (internal users) and RPC over HTTP connections (roaming users)
    We will be installing Exchange 2010 on a single server, with CAS, HUB and Mailbox roles and no load balancer, as we will be moving quickly to 2013.
    We have two Kemp load balancers ready for Exchange 2013.
    Exchange 2010 is installed on a single server (exh2010.domain.local) and configured with an CAS array name (exh-cas.domain.local) which is resolvable internally only.
    Currently we have multiple smtp namespaces e.g. @company.com, @company2.com.
    Our main website etc is www.company.com
    Our public facing services are at https://service.mycompany.com
    Our 2003 RPC address is https://webmail.mycompany.com
    I understand that the 2010 RPC CAS array name should be separated from the Outlook Anywhere (RPC over HTTPS) address so that when 2013 takes over the HTTPS address, the RPC connections are not broken.
    Two Questions:
    Do we have to use the HTTPS same namespace for 2013 as we do in 2010?  Its just I would want to test the Kemp load balancers before making them live (slow careful transition), and giving them a different namespace, e.g.
    https://mail.mycompany.com would allow a migration, rather then a cutover.
    Can we use the *.mycompany.com address rather then the company.com address, even though we have no SMTP addresses at mycompany.com?  Can autodiscover still work?
    Thanks in advance for any guidance
    Cheers
    Steve

    1. No, but you can.  Exchange 2013 will proxy all services for Exchange 2010, so if you set up everything right, you should be able to simply swing the name from Exchange 2010 to 2013.
    2.  Your web services can be published with any domain as long as the hostname is in the certificate.  Only Autodiscover needs to match the e-mail domain(s).  So in your example, you could publish OWA, ECP, ActiveSync, Web Services and OAB
    at owa.mycompany.com.  You would need autodiscover.company.com, autodiscover.company2.com, etc., but if you don't have e-mail addresses with mycompany.com, you don't need autodiscover.mycompany.com.  If all users have a company.com e-mail address,
    the you only need autodiscover.company.com as long as users know to enter that e-mail address when configuring profiles on PCs or devices.  If you're going to have to have Autodiscover for multiple domains, then you might consider using an SRV record
    instead because it can greatly simplify your certificate requirements.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Automate New Mail Account for Exchange

    I'm trying to create a applescript that will ask the user for the their password and then create their mail account.  I can get the username, name, and email address from their active directory record so no need to ask the user that.  The problem I'm running into, is that scripting for exchange seems almost not doable.  In the script that comes in /Library/Scripts they only work with .Mac, POP, and IMAP types, but no exchange. 
    The funny part is that when a new user goes into mail the first time, just by giving the username, email address, and password it can autodiscover everything it needs and set up the account.  So is there a way for applescript to tell mail these pieces of information and then tell it to autodiscover the account?
    Is there a way to do this using a bash script? 

    Mail.app crashes while setting up an Exchange Account

  • Prepping New Child Domain for Exchange so Users can use it

    I have a new Child Domain that needs a "prep" for Exchange 2010 User objects.  Instructions don't indicate on which DC this "prep" needs to be made.
    Anyone done this before?  Thank you!!
    Charlie

    Hi ,
    You can prefer anyone of the domain controller in the child domain for preparing the domain .
    Setup.exe /PrepareDomain:<FQDN of the domain you want to prepare> /IAcceptExchangeServerLicenseTermsReference link : http://technet.microsoft.com/en-us/library/bb125224(v=exchg.150).aspxOn that above link please refer the topic "Let me choose which Active Directory domains I want to prepare"RegardsS.Nithyanandham
    Thanks & Regards S.Nithyanandham

  • CSS keepalive for Exchange 2003

    I am load balancing multiple ISA servers with a pair of 11506's - with Exchnage 2003 running behind them.
    I am not to fimilar with Exchange 2003 so I am not really sure how to customize a script that will validate whether the mailbox services are running correctly.
    I was just curious whether anyone had any suggestions or links to good information on customizing css scripts.
    Thanks

    Nick,
    Unless your clients are accessing the Exchange server using POP or IMAP, all of the client <--> server communication happens on TCP port 135. Unfortunately, TCP port 135 is used by all Windows OSes and is not unique to Exchange (so its availability isn't an indication of mailbox availability).
    If you wanted to get creative, you could try to monitor the state of the Exchange services using SNMP or WMI. This would require you to send a "raw" request from the script. The raw data would have to be captured from a sniffer.
    You can find some good examples of sending raw data in script keepalives here:
    http://www.cisco.com/en/US/products/hw/contnetw/ps792/products_administration_guide_chapter09186a00801eea3e.html#1004461
    http://www.cisco.com/en/US/products/hw/contnetw/ps792/products_administration_guide_chapter09186a00801eea3e.html#1004556
    You can find information about the protocols and ports used by Microsoft Exchange here:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;176466
    ~Zach

  • Win 2012 AD for Exchange 2003

    Hello there,
     Our messaging system is running on Exch 2003 and we would like to upgrade our AD from Win 2003 to Win 2012. Does Exch 2003 support Win 2012 AD?
    Would Exchange 2003 also support Win 2012 R2 as AD?

    The dedicated Exchange forums are here:
    http://social.technet.microsoft.com/Forums/en-US/home?category=exchangeserver
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • New SSL certificate for Exchange, iPhones won't accept without delete/recreate of account on phone.

    Our Network Solutions security certificate was about to expire so we renewed it, however once it was installed on the Exchange 2007 server the phones would no longer connect.  How do you get the iPhones that are already connected to your Exchange server to recognize the new certificate?

    Hi bb9193, this will not be no short-term solution, but you might consider using a MDM-solution. With MDM it is possible to deinstall and reinstall the Exchange profile over the air, so your users will not need to do more than just reenter their Exchange password.
    Best regards,
    Detlev

  • Created new email account for Exchange sync - Won't Sync old mail

    I upgraded to 2.0 on an old iPhone. could not get the PUSH to work on my original exchange account setup on the iphone. Created a new email/exchange account on the phone that offered a totally different setup screen and different required info. PUSH now works but will only download 10-15 emails that were previously synced and won't download any old subfolder mail. I have it set to download the last 200 emails. Help!

    Exchange accounts have a setting for the number of days to sync. Look in Settings > Mail, Contacts and Calendars > (your account name) > Mail days to sync. This overrides the setting of the number of emails to download. This is on p. 111 of User's Guide.

  • Re: Latest GW7 GW for Exchange SP2 - 7-14-2008 and 7-22-2008

    scottb wrote:
    > Hello All, My company paid Novell support a $750 support incident for this
    BTW - if indeed you did have to pay to get files, you can get your SR
    refunded.
    Danita
    http://www.caledonia.net/blog

    scottb,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Trying to install SP1 for Exchange 2010 on Win Server 2008 R2. A pre-req is KB982867. It is no where to be found. How to find it?

    The SP1 wizard says "Install Hotfix Microsoft Knowledge Base article 982867 from http://code.msdn.microsoft.com/KB982867
    However, that link no longer exists.
    How to get this hotfix?
    Another post said that the Win 7 hotfix would work. Windows6.1-KB982867-v2-x64 But I can't locate that either.
    How to fix?
    john11

    Hi John,
    Exchange 2010 Service Pack 3 is the latest service pack. It is recommended to install it. Service Packs are cumulative, Exchange 2010 SP3 includes all fixes included in previous RUs and service packs. Here is a blog for your reference:
    Exchange Server 2010 SP3
    http://blogs.technet.com/b/exchange/archive/2013/02/12/released-exchange-server-2010-sp3.aspx
    Hope it helps.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • Migrate a Single User from GW7 to Exchange 2003

    Does anyone have experience migrating a single user from GroupWise 7 to Exchange 2003? We have a business unit that we acquired several years ago and no decision has been made to this point about merging the two e-mail systems (we are GroupWise 7 and they are Exchange 2003). I have just been asked about moving one of our employees to their business unit and want to know my options.
    My gut says that we should keep him on GroupWise because that is what he knows and loves, then we can use this as a first crack in getting GroupWise over there.
    I have found a few Microsoft articles that reference setting up the API gateway and migrating data through there, but everything mentioned is either GroupWise 5.5 or 6.x. Also, based on our past experiences with the API gateway we would like to avoid that if possible.
    We have an implementation of the Novell GroupWise Gateway for Microsoft Exchange, but that presumably does not help us in this situation.
    Are there any utilities out there? Anything that could take a GroupWise Native Archive and convert it to the Outlook equivalent? Even if it was like an archive that he had to manually open from time to time, I'm betting that would be good enough.

    Yes, I have lots of experience. The Microsoft articles that you refer to basically involve setting up co-Existence between GW and Exchange. They all refer to GW 6.5, but it works with GW7. It is just not "officially" supported by Microsoft. The other thing to be aware is that the Microsoft Connector for GroupWise comes with Exchange 2003 and links in with the Novell API Gateway 4.1. The Newer Novell Gateway for Exchange sort of replaces this Microsoft tool, but you are not going to find it much better as a gateway. Too many issues and not nearly enough documentation on the web.
    Also, you can use the migration wizard from the Exchange 2003 installation to migrate a user from GW to Exchange (with or without co-existence set up) . It works fine to migrate all of the users mail, appointments, etc. Does not destroy the GW mailbox, so you can do a dry run to see how it works. Does not migrate their personal address books though.
    The Wizard can create the user for you in Exchagne 2003, but it can only create an Exchange 2003 Legacy account. If you are running Exch2007, set up the user first, then migrate.
    Hope that helps.

Maybe you are looking for

  • My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything

    My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything,  I have a child that is very ill and I have to have access to a phone at all times can someone help me?  It happened one other time whe

  • Get rid of the Bluetooth icon

    I migrated my account from my powerbook to mini, trouble is i don't have bluetooth installed on my mini and the bluetooth icon on the top right corner is also 'migrated'. so the icon would show as grey and read 'not available'. if i try to open bluet

  • Business rule not showing the result

    When i am executing a business rule, it runs successfully but it does not show any result. But when i enter any amount in that specific cell where the BR should calculate the amount and then run the BR then it shows me the required result. What can b

  • How to know  when it pushed browser print button

    Hi anyone knows how to get the print browser button event ? I mean I have a jsp and I want to know when then IE 5 print button is pushed. How to get the event?

  • Oracle RAC Problem

    I have a problem when i try to install oracle RAC on 2 x86 solaris machines when i run the script : ./clusvfy to check the two nodes ... i got an error message that says : USER EQUIVELANCE UNAVAILABLE ON ALL THE NODES if anyone could help me i would