FRM-40738 issue on AIX servers

Hi All,
I have an issue with populating the LOV of a particular field. The form works fine on linux server but throws error FRM-40738 on unix server.
Compiled all libraries in both the servers but still this issue persists. Can anyone throw some light on this?

Hi,
Thank you for the responses. After thorough checking we understood that the program code was not initializing the variables properly, so we had to modify few lines of the script to make it work on the new server. Somehow on original server(AIX5.2) it was not showing error with the script, but had issue with the OS upgrade to AIX 5.3. Apart from this one-off incident we have not faced any other issues till now. Will update if anything else crops up.
Thank you again !
Regards,
Himansu

Similar Messages

  • Empty Error box raising FRM-40738

    Hi all
    While migrating to HSD6i/Dev6i, encountered following situation
    - Open any form (e.g. HSD0022F)
    - Query any record
    - Use F6 and F4 to force duplicate value for an UK
    - Press X in windowtitle-bar to close window
    - Message QMS-00158('Do you want to save your changes')
    - Pressing No, all is ok
    - Pressing Yes, causes alert with message for UK-violation to popup (is OK) (e.g. HSD-00016)
    - Press OK-button and an empty 'error and warning box in this transaction'-window apears
    - Press OK-button and alert with FRM-40738 appears
    - Pressing OK-button returns you to named window
    Only way to close this window is via the menu-option 'File->Close Form' or 'File-Close all)
    Has anyone encountered this behaviour and a fix or WA ??
    rgrds
    Jan

    This is a new one. I have recorded a bug against Headstart for this.
    I did discover one thing.
    After the empty Errors and Warnings in this Transaction window opens, you can click back on the original window instead of pressing OK.
    If you do that, you can close the window by pressing the 'X' in the upper right hand corner.
    You will again see the message 'Do you want to save your changes?'. This time, select 'No'.
    Now that one form will close and you won't have to exit your whole application.
    Regards,
    Lauri

  • FRM-40738 cant identify the problem

    Hi Guys i am getting this error again and again :
    FRM-40738 Argument 1 to builtin Report_Object_Status cannot be null.
    I have check the code and to my understanding it is ok, this is the code:
    DECLARE
         report_id Report_Object;
         report_job_id VARCHAR2(100);
         v_rep VARCHAR2(200);
         rep_status VARCHAR2(100);
    BEGIN
         report_id := FIND_REPORT_OBJECT('REPORT1');
         set_report_object_property(report_id,REPORT_FILENAME,'EMP_ALLOW_DET.RDF');
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'html');
         --SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_other,' p_prov_id='||V_PROVINCE
         v_rep := RUN_REPORT_OBJECT(report_id);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    --WEB.SHOW_DOCUMENT('http://'||ltrim(rtrim(v_host_name))||'.sct.gov.sa:8888/reports/rwservlet/getjobid'||
    --substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    WEB.SHOW_DOCUMENT('http://BSS-DC1:9000/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Please help me out with this problem.
    Regards, Imran

    Hi,
    print out the value of "v_rep" to see if this has a valid Reports ID. In cases where a Reports crashes (see queuemanager for details about the Reports run) it happens that a null value is returned instead of a job ID. This is a bug and should be fixed soon.
    Also, since you are using REPORT_COMM_MODE being SYNCHRONOUS you don't need the LOOP in the while statement. Forms waits for the Reports call to return.
    I know that the while loop is in the example code in the Forms / Reports integration Whitepaper too, but this is not needed. I'll remove it from this paper for its next release.
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    Just use
    rep_status := report_object_status(v_rep);
    Frank

  • Forms 9i FRM-40738 Hyperlink Bean problem

    Hello,
    I've this error coming please help me.
    I needed to see, how a bean is integerated in Forms 9i. I was
    searching through the example at metalink and it gave me a
    paper
    "How to Integerate HyplerLink Bean in forms 9i", what steps
    i followed are given in that paper.
    Now when i run the form, it gaves me the error
    FRM-40738 Argument to Built in SET_CUSTOM_PROPERTY CANNOT BE NULL.
    the steps i followed are
    1- I created a form called hyperlink.fmb
    2- Then i created a ON LOGON trigger at this form
    3- I opened the canvas and draw a Bean Area on it
    4- Then i renamed that Item to Hyperlink by Property Plattelete
    5- I named the canvas CONTROL
    6- Then at module level i created a TRIGGER WHEN_NEW_FORM_INSTANCE and put following PL.SQL code in it
    DECLARE
    hHyperlink ITEM := FIND_ITEM('CONTROL.HYPERLINK');
    BEGIN
    FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
    FBean.Invoke( hHyperlink, 1, 'setURL', 'http://otn.oracle.com/products/forms');
    FBean.Invoke( hHyperlink, 1, 'setLabel', 'Forms on OTN');
    FBean.Enable_Event( hHyperlink, 1, 'actionListener', true );
    END;
    7-Then i created a Trigger at CONTROL.HYPERLINK, that was
    WHEN_CUSTOM_ITEM_EVENT and put the following code in it
    DECLARE
    vcEventData varchar2(256);
    BEGIN
    vcEventData := Fbean.Invoke_Char('CONTROL.HYPERLINK', 1, 'getURL');
    WEB.SHOW_DOCUMENT(vcEventData, '_blank');
    END;
    Then did the following steps of the locating the bean by the
    JAR method.
    Method 1 - The JAR Method:
    a. Locate the hyperlink.jar file located in D:\9iDS\forms90\demos\hyperlink\classes.
    b. Move the hyperlink.jar file to 9iDS_HOME\forms90\java.
    c. Find the formsweb.cfg file in 9iDS_HOME\forms90\server.
    d. Add the following configuration section to the file:
    [hyperlink]
    archive_jini=f90all_jinit.jar,hyperlink.jar
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    The archive_jini parameter pointing to hyperlink.jar is the most important part
    of this configuration.
    e. Now go into Form Builder and accomplish the following:
    Edit->Preferences->Runtime Tab
    Add the config parameter to your "Application Server URL". It should look
    something like this:
    http://machine.domain:port/forms90/f90servlet?config=hyperlink
    Then i compiled it and ran it, Now it gives this error
    FRM-40738 Argument 1 to built in SET_CUSTOM_PROPERTY cannot
    be null.
    P.S I have set the implementation class property but, still i don't know
    whats the problem, and where i am making mistake, please help me.
    Please any help will be appreaciated.
    Sincerely
    Tensed Beginner

    Hello Frank,
    Thanks for your reply back to me. Frank, i am
    currently
    new to Forms 9i even the Oracle world. In my compan
    basically i was hired a J2EE resource, but they put
    me
    on oracle, and i feel like, i am not performing to
    the level i should.
    Can you please tell me, how should i verify that, it
    is not returning
    a Null? Can you tell me the statement Syntax, yea my
    BLock
    name is CONTROL and Item name is HYPLERLINk, please
    do
    tell me how to verfiy it, i will be highly obliged.
    Sincerely,
    Ben ( Tensed Beginner )
    Hello Frank,
    Thanks for your reply back to me. Frank, i am
    currently
    new to Forms 9i even the Oracle world. In my compan
    basically i was hired a J2EE resource, but they put
    me
    on oracle, and i feel like, i am not performing to
    the level i should.
    Can you please tell me, how should i verify that, it
    is not returning
    a Null? Can you tell me the statement Syntax, yea my
    BLock
    name is CONTROL and Item name is HYPLERLINk, please
    do
    tell me how to verfiy it, i will be highly obliged.
    Sincerely,
    Ben ( Tensed Beginner )Hi Ben
    Please check the path that u have given. Think the mistake is in the path.
    FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
    If the problem still persist will let u know how to resoleve it.
    feel free to get in touch....
    Regards
    Aravind

  • FRM 40738 - Argument 2 to builtin CREATE_TIMER

    Recently I migrated from forms 4.5 to forms6i (6.0.8.17.1). Everything worked fine until a few weeks ago. Every new fmx-file I create, gives a very strange error when the user moves his mouse over the icons in the toolbar: 'FRM 40738 - Argument 2 to builtin CREATE_TIMER'. The developers cannot reproduce this bug because it only occurs on the PC's of the users.
    Can somebody help me?

    -- BEGIN WHEN_MOUSE_ENTER
    BEGIN
    IF SUBSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),1,INSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),'.')-1) = 'TOOLBAR'
    THEN
    HINT.ShowButtonHelp;
    END IF;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    null;
    WHEN OTHERS THEN
    null;
    END;
    -- END WHEN_MOUSE_ENTER
    -- ShowButtonHelp is a procedure in a PL\SQL library
    PROCEDURE ShowButtonHelp( timedelay NUMBER := 500) IS
    t Timer := Find_Timer(BUTTONHELPTIMER);
    BEGIN
    IF NOT on_windows THEN
    RETURN;
    END IF;
    IF NOT Id_Null(t) THEN
    Delete_Timer(t);
    END IF;
    sync_mouse_info;
    IF mouse_item IS NOT NULL AND
    mouse_item_is_iconic_button THEN
    IF mouse_item_label IS NOT NULL THEN
    t := Create_Timer(BUTTONHELPTIMER,timedelay,NO_REPEAT);
    END IF;
    ELSE
    HideButtonHelp;
    END IF;
    END;
    -- sync_mouse_info is a procedure in a PL\SQL library
    PROCEDURE sync_mouse_info IS
    BEGIN
    mouse_item := Name_In('SYSTEM.MOUSE_ITEM');
    mouse_canvas := Name_In('SYSTEM.MOUSE_CANVAS');
    appInst := TO_NUMBER(
    Get_Application_Property(APPLICATION_INSTANCE));
    IF mouse_item IS NOT NULL THEN
    hWind := TO_NUMBER(
    Get_Item_Property(mouse_item,WINDOW_HANDLE));
    mouse_item_hint := Get_Item_Property(mouse_item,HINT_TEXT);
    IF SUBSTR(mouse_item_hint,1,1) = CHR(0) THEN
    mouse_item_hint := NULL;
    END IF;
    ELSE
    hWind := NULL;
    END IF;
    END;

  • Error : FRM-40738

    I am getting following error while first time running the form.
    FRM-40738 : Argument 1 to built-in find_form can not be null.
    But interesting thing is if I close this form without saving and again open it and run it then it does not give this error.
    Any solution ?
    I am using Oracle 8i and Forms 6i.
    Kiran

    Do you mean you get this error at build-time or runtime? If it's at build-time, try forcing a compile all.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Export error :- FRM-40738

    Hi All:
    I've created a custom form based on PO Summary form. When try to export, system gives me following error (while export works fine for PO Summary):
    "FRM-40738: Argument 1 to builtin FND_VIEW cannot be null."
    Any idea what am I missing?
    Thanks,
    -Manish

    Are referring to Oracle Applications? If so, then you should ask this question on one of the Oracle Applications forums.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • FRM-40738 error.

    Hello,
    when tryiing to switch between the tab canvases iam encountreing the below error.
    1) FRM-40738: Argument 1 to builtin FIND_VIEW cannot be null.
    2) FRM-41053: Cannot find canvas: invalid ID.
    Any suggestion Please.

    Can you give us a code sample? More than likely, you have misspelled the Canvas name in your call to Find_View.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Buying New AIX Servers + Oracle DB

    Hi,
    11.2.0.3
    To further support our company's business goals and strengthen its infrastructure, We are buying new
    -IBM machines Aix servers
    -Oracle Db EE licenses,
    -Application Suits,
    -Weblogic Suite, (WebTier, Oracle HTTP Server, Oracle Web Cache, Oracle Portal, Oracle Reports Services),
    -Identity and Access Management Suite Plus (Oracle SSO),
    -Directory Services Plus (Oracle OID)
    I am task configure initial setup of the "heart" of the project which is the database
    I know that I need to plan and tune well the initial production setup so it will work good, and all the
    other software is depending it will perform good too, resulting to a successful project.
    It this regard, can you share be "best practices" documentation in installing and configuring the initial PROD setup of Oracle Database 11.2.0.3.
    Do I recommend to install the lastest patch 11.2.0.4?
    What others things to consider to achieve a successful well tuned and best performance for and initial setup? (aside from following the install guide)
    Thanks a lot,
    pK

    f55237a7-2c38-4db3-a7a3-1d77256f0730 wrote:
    Hi,
    11.2.0.3
    To further support our company's business goals and strengthen its infrastructure, We are buying new
    -IBM machines Aix servers
    -Oracle Db EE licenses,
    -Application Suits,
    -Weblogic Suite, (WebTier, Oracle HTTP Server, Oracle Web Cache, Oracle Portal, Oracle Reports Services),
    -Identity and Access Management Suite Plus (Oracle SSO),
    -Directory Services Plus (Oracle OID)
    I am task configure initial setup of the "heart" of the project which is the database
    I know that I need to plan and tune well the initial production setup so it will work good, and all the
    other software is depending it will perform good too, resulting to a successful project.
    It this regard, can you share be "best practices" documentation in installing and configuring the initial PROD setup of Oracle Database 11.2.0.3.
    Do I recommend to install the lastest patch 11.2.0.4?
    What others things to consider to achieve a successful well tuned and best performance for and initial setup? (aside from following the install guide)
    Thanks a lot,
    pK
    It this regard, can you share be "best practices" documentation in installing and configuring the initial PROD setup of Oracle Database 11.2.0.3.
    The same "best practices" as for setting up a TEST database, which you should do first.
    There is no reason NOT to start with 11.2.0.4.
    I know that I need to plan and tune well the initial production setup so it will work good, and all the
    other software is depending it will perform good too
    If your application suite is poorly written, don't expect a "perfect" setup of the database to work miracles.

  • CPU Monitoring of AIX servers through OMW

    HI All,
    Can you please let me know how can we monitor the CPU Utilization of AIX servers through OMW. I have created a template and deployed on all the AIX servers, but the problem is it is working fine on some of the servers (alerting one's the threshold level is exceeded) but is not alerting for some servers even though the agent is working fine on those.
    Please let me know what can be the validations I can do to ensure monitoring is working fine for all the AIX servers.
    Thanks in advance.
    Regards,
    Arvinder

    After spending more time researching I think I have found a solution:
    http://blogs.technet.com/b/kevinholman/archive/2013/06/22/opsmgr-2012-hyper-v-management-pack-extensions-published.aspx
    http://hypervmpe2012.codeplex.com/
    This Hyper-V MP addresses the monitoring of servers using dynamic resources and it looks to also contain optional performance counters for reporting. No reports only dashboards are included. Will need to create these from scratch. 
    Anyone use this MP? any feedback?
    Cheers,
    Martin
    Blog:
    http://sustaslog.wordpress.com 
    LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • FRM-92100 issue

    Hi gurus....
    i have recently upgraded 11.5.9 to 11.5.10.2 and db version 9.2.0.8,forms are launching with below error,i have checked network issue,it ping both from client to server vice versa.
    FRM-92100:your connection to the server was interruputed
    This may be the result of a network error,or a failure on the server You will need to reestablish your session

    Pl post details of OS and database versions. Pl see if these MOS Docs can help
    Troubleshooting FRM-92100 Issues In Oracle Applications 11i          (Doc ID 311019.1)
    Diagnostic Steps for Intermittent FRM-99999 & FRM-92100 Errors          (Doc ID 135715.1)
    Pl also verify the value of the parameter "s_frmNetworkRetries" in the apps context file it set to at least 30.
    11i:Is it possible to proceed working with a Form after a short Network Failure?          (Doc ID 1205203.1)
    HTH
    Srini

  • SharePoint Foundation 2013 - Search Configuration Issue - 2 App Servers and 2 Front-End Servers

    Hi, 
    We have a SharePoint Foundation 2013 with SP1 Environment. 
    In that, we have 2 Front-End Servers and 2 App Servers. In the Front-End Servers, the Search Service is stopped and is in Disabled state and in the 2 App Servers in One App Server, Search is Online and in another Search is Starting but goes to Stopped sooon
    after.
    Originally, we had only 1 App Server and we were running our Search Service and Search Service Application in that. Now since the index location became full and we were unable to increase the drive there, we added one more App Server and now the issue is
    Search is not properly getting configured in either of these App servers. What we want to do is run Search only in the new App Server, because we have a lot of storage space for Index locations here, but in the older App Server, not run Search at all.  We
    tried keeping the Search Service disabled and ran the below PowerShell Scripts, but none of the ones are working. These scripts are creating the Search Service Application, but the error of "Admin Component is not Online", "Could not connect
    to the machine hosting SharePoint 2013 admin component" is coming up. 
    http://www.funwithsharepoint.com/provision-search-for-sharepoint-foundation-2013-using-powershell-with-clean-db-names/
    http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    http://blog.ciaops.com/2012/12/search-service-on-foundation-2013.html
    Can I get some help please?
    Karthick S

    Hi Karthick,
    For your issue, could you provide the
    detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    For troubleshooting your issue,  you can try to run the SharePoint Products Configuration Wizard on your WFE servers and run the script for configuring the search service on SharePoint
    Foundation:
    [string]$farmAcct = "DOMAIN\service_Account"
    [string]$serviceAppName = "Search Service Application"
    Function WriteLine
    Write-Host -ForegroundColor White "--------------------------------------------------------------"
    Function ActivateAndConfigureSearchService
    Try
    # Based on this script : http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    Write-Host -ForegroundColor White " --> Configure the SharePoint Foundation Search Service -", $env:computername
    Start-SPEnterpriseSearchServiceInstance $env:computername
    Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance $env:computername
    $appPool = Get-SPManagedAccount -Identity $farmAcct
    New-SPServiceApplicationPool -Name SeachApplication_AppPool -Account $appPool -Verbose
    $saAppPool = Get-SPServiceApplicationPool -Identity SeachApplication_AppPool
    $svcPool = $saAppPool
    $adminPool = $saAppPool
    $searchServiceInstance = Get-SPEnterpriseSearchServiceInstance $env:computername
    $searchService = $searchServiceInstance.Service
    $bindings = @("InvokeMethod", "NonPublic", "Instance")
    $types = @([string],
    [Type],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool])
    $values = @($serviceAppName,
    [Microsoft.Office.Server.Search.Administration.SearchServiceApplication],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$svcPool,
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$adminPool)
    $methodInfo = $searchService.GetType().GetMethod("CreateApplicationWithDefaultTopology", $bindings, $null, $types, $null)
    $searchServiceApp = $methodInfo.Invoke($searchService, $values)
    $searchProxy = New-SPEnterpriseSearchServiceApplicationProxy -Name "$serviceAppName - Proxy" -SearchApplication $searchServiceApp
    $searchServiceApp.Provision()
    catch [system.exception]
    Write-Host -ForegroundColor Yellow " ->> Activate And Configure Search Service caught a system exception"
    Write-Host -ForegroundColor Red "Exception Message:", $_.Exception.ToString()
    finally
    WriteLine
    ActivateAndConfigureSearchService
    Reference:
    https://sharepointpsscripts.codeplex.com/releases/view/112556
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Eric Tao
    TechNet Community Support

  • Issue on virtual servers on sun one web server

    Hi all,
    I configured sun webserver 6.1 sp8 on windows 2003 server
    I configured php,asp,jsp succesfully on different virtual servers.
    as
    www.abc.com:80
    www.php.com:2222
    www.asp.com:3333
    www.jsp.com:4444
    Now the issue is
    I want to run the applications by using url with out portno in the browser
    like www.php.com instead of www.php.com:2222
    my DNS is aware of the www.abc.com,www.php.com,asp.com,jsp.com
    From Internet I can access www.abc.com:80 as www.abc.com becoz it is running on port 80.
    If I type www.php.com it is directing to www.abc.com not to www.php.com:2222.
    In the host file under windows/system32/drivers/etc I added the following lines
    10.129.149.196 www.abc.com
    10.129.149.196 www.php.com
    10.129.149.196 www.asp.com
    10.129.149.196 www.jsp.com
    I want to run the applications without entering portno along with url in the browser.
    Can any one help me please.
    Thanks in advance

    Dear M.V,
    I choose one server(www.xyz.com) that is running on port 80,in its server.xml I added
    <VS id="https-pqr" connections="ls1" mime="mime1" aclids="acl1" urlhosts="www.pqr.com" state="on">
    <PROPERTY name="docroot" value="D:/Sun/WebServer6.1/docs"/>
    <USERDB id="default"/>
    <SEARCH>
    <WEBAPP uri="/search" path="D:/Sun/WebServer6.1/bin/https/webapps/search" enabled="true"/>
    </SEARCH>
    <WEBAPP uri="/" path="D:/Sun/WebServer6.1/https-pqr/webapps/https-pqr" enabled="true"/>
    </VS>
    which is of pqr virtual server that is running on port 3333
    Now with out port no ie, with www.pqr.com I am able to see the home page of application running on pqr virtual server.
    With this configuration I need to check at client environment
    If u find mistakes from the above configuration please let me know
    Thanks alot
    Bye

  • How to list the Cert Issuer for all servers in a Domain

    Hello,
    The objective is to list the Server name and Cert Issuer for any Cert found in the LocalMachine\My store on all servers in a Domain.
    Once I'd get to a server, probably by PS remoting, I'd issue the following:
    dir cert:\localmachine\my -recurse | ? Issuer -like '*'
    However, the output is Thumbprint and Subject, but I really need to see the Issuer, or what is displayed in the Certificates MMC under the 'Issued By' column.  What I need in my output is the following:
    ComputerName       Issuer
    Srv1                       Acme Cert Auth
    Srv2                       Host1.Acme.Com
    Any suggestions would be appreciated.
    Thanks for your help! SdeDot

    As you might suspect it is even easier than that:
    $omputers |
    ForEach-Object{
    invoke-command -ComputerName $_ -ScriptBlock {dir cert:\localmachine\my -recurse}
    } |
    select PSComputerName, Issuer
    ¯\_(ツ)_/¯
    Indeed.
    =]
    Both work great!
    Thanks for the response and help Mike and Jrv!
    Thanks for your help! SdeDot
    Cheers, you're very welcome.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Cannot view OWA email - after upgrade to Firefox 5.0, Outlook Web Access displays ASCII characters (garbage) in message body. Same issue with multiple servers.

    Email body of HTML or RTF messages are rendered in ASCII characters after upgrading to Firefox 5 when viewing email in MS Outlook Web Access (OWA) light from MS Exchange 2007 servers. Issue is repeatable with two entirely different Exchange systems.
    Text email renders OK. Work around is to forward email (in use MS-IE).

    You are welcome. I'm glad you got it back up.
    (1) You say you did the symbolic link. I will assume this is set correctly; it's very important that it is.
    (2) I don't know what you mean by "Been feeding the [email protected] for several weeks now, 700 emails each day at least." After the initial training period, SpamAssassin doesn't learn from mail it has already processed correctly. At this point, you only need to teach SpamAssassin when it is wrong. [email protected] should only be getting spam that is being passed as clean. Likewise, [email protected] should only be getting legitimate mail that is being flagged as junk. You are redirecting mail to both [email protected] and [email protected] ... right? SpamAssassin needs both.
    (3) Next, as I said before, you need to implement those "Frontline spam defense for Mac OS X Server." Once you have that done and issue "postfix reload" you can look at your SMTP log in Server Admin and watch as Postfix blocks one piece of junk mail after another. It's kind of cool.
    (4) Add some SARE rules:
    Visit http://www.rulesemporium.com/rules.htm and download the following rules:
    70sareadult.cf
    70saregenlsubj0.cf
    70sareheader0.cf
    70sarehtml0.cf
    70sareobfu0.cf
    70sareoem.cf
    70sarespoof.cf
    70sarestocks.cf
    70sareunsub.cf
    72sare_redirectpost
    Visit http://www.rulesemporium.com/other-rules.htm and download the following rules:
    backhair.cf
    bogus-virus-warnings.cf
    chickenpox.cf
    weeds.cf
    Copy these rules to /etc/mail/spamassassin/
    Then stop and restart mail services.
    There are other things you can do, and you'll find differing opinions about such things. In general, I think implementing the "Frontline spam defense for Mac OS X Server" and adding the SARE rules will help a lot. Good luck!

Maybe you are looking for