"Service Advisor" option in CAM to try to collect support data ......

I've tried using "Service Advisor" option in CAM to try to collect support data I get the error "The device has been unregistered from this application. Please close this service advisor window.".
How to fix this?
Thank you

Hi.
1. You can use command line for collect support data.
/opt/SUNWsefms/bin/supportData -d <array_name> -p /tmp -o supportdata
Result : /tmp/supportdata.zip
2. For trubleshuting current problem, please show result of:
cd /var/opt/SUNWsefms/store/Reports
for i in report* cache*
do
echo $i
perl -ane '/[^[:ascii:]]/ and print;' <  $i
doneHow many arrays registered in the CAM ?
Check that for this array work next point in CAM:
-> Trubleshuting -> FRU
-> Trubleshuting -> Events
Regards.

Similar Messages

  • Tried installing latest iTunes (10.5.3.3). During installation received error message asking to verify access to "C:\Config.Msi\187e500.rbf". The only option it gives is "try again" or "cancel". No choice but to cancel installation. Any suggestions?

    The problem started when my current iTunes kept popping up a window stating that my Auto Run was turned off. (which means iTunes will not be able to recognize when a CD is inserted or ejected). It asked if I wanted iTunes to run  Auto Run and I select Yes every time (this window pops up every time I open my iTunes), but a second window pops up stating iTunes cannot turn on my Auto Run setting (but it will still be able to recognize CDs) to which I choose okay. A third window pops up after stating that iTunes was not properly installed and if I wish to import or burn CDs I need to re-install iTunes, except that I can import CDs since I did this only yesterday and this problem has been going on at least a month.
    To add to this, I cannot cannot automatically update to version 10.5.3. (I don't recall which problem came first, my Auto Run problem or the fact that my iTunes can't update). iTunes suggested that I manually install the update, so I went to the apple site and tried manually installing the latest iTunes (10.5.3). However, during the installation process I received an error message. It asked me to verify access to "C:\Config.Msi\187e500.rbf". The only option it gives is "try again" or "cancel". I tried hitting Try again a few times but the same error message popped up, so I had no choice but to cancel the installation. Afterwards, I tried searching in my C drive but could not find "C:\Config.Msi\187e500.rbf"
    Does anyone have any suggestions how I can update my iTunes?

    I should have posted this earlier, but anyway. I restored my laptop to factory version after backing up any useful data, and the first thing I the laptop was restored was connect to the internet, download and install the latest version of iTunes. And Bingo! It worked.
    Apple helps you find Original Sin with the Windows.

  • How to lauch 'Toshiba services and Options'?

    When i try to Launch TOSHIBA Services and Options it launches a notepad file titled "index".
    How can i resolve this problem?
    Many thanks
    Robert Dawson

    Hi
    Seems you are a Satellite Pro A120 owner. Am I right?? I checked you another thread ;)
    Anyway, back to this posting. Im a little bit surprised and I wonder what Toshiba tools you mean????
    The TOSHIBA Services and Options are not known to me!!!
    Where did you find these tools or from where do you want to launch it???
    You can find most of the Toshiba tools and utilities in the Toshiba Assist.
    This is a reservoir for all preinstalled Tosh tools.
    But as far as I know there is nothing like TOSHIBA Services and Options

  • HT5467 iPhone iOS 6. What is the difference between, respective purposes, and functions of having both location services for photos vs camera

    What is the difference and respective functions of turning on or off location services for "photos" and "camera" ?  I guess I don't see what purpose of having the option for photos location services in addition to the camera option?

    Thanks,
    one hypo:
    If I always had location services off for the camera, while taking all my photos, then there should be no metadata embedded at all in the first place, so then the photos selection becomes redundant?

  • HT2729 When I hit camera then try 'Video' the program won't start just photos. What's wrong?

    When I hit camera then try 'Video' the program won't start just photos. What's wrong?

    Sounds to me like you are trying to tap on the word VIDEO.
    To change to video you don't tap on the word VIDEO. Instead, you drag the centre of the screen down. That will change the option from PHOTO to VIDEO.
    Of course, to go back to PHOTO or to SQUARE you drag the centre of the screen up.

  • 6130 disk replacement & service advisor

    I need to replace a "Predictive Failure" status drive in the 6130. This is not the first time I've done this but in the past I was able to use the "Service Advisor". Today when I use the Sun Web Console/StorADE/Service Advisor I get the widow and the left hand pane is there with the 6130 Array, Fru Removal/Replacement Procedures and Disk Drive Removal/Replacement item is there. But clicking the Disk Drive Removal/Replacement line does not expand the list. The only item with details is the last one "Tray Midplane Removal/Replacement".
    Because of other problems with the StorADE install I have installed and reinstalled StorADE since the last time I did a drive replacement. (It's still not working correctly and I plan to uninstall the master and agents and try again.)
    Anyone seen this? Does this sound like an install problem with StorADE or should I look elsewhere?
    Thanks,
    Glen

    Welcome to the forums
    If you have an extended warranty you can call support.But if yours is a standard one year warranty i doubt lenovo could be of your help
    A new WD 160GB SATA disk will cost you around 2100 RS/- ,if you want to buy one 
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • How to Retrieve Data From Web Service with Optional Arguments

    This should be a simple one. I have a web service that
    returns a list of books. There are 3 optional arguments that can be
    passed to this (ex. book type, author, id) to filter this list. Do
    I still need to use the <mx:request> tags if I am not going
    to pass any parameters to the web service?
    When I look at the services browser in Flex, it says "unable
    to get meta data for CFC". However, if I remove the arguments from
    the CFC and then call the service again, all my data now appears.
    What's the best way to appoach this?
    Thanks in advance

    I have a similar application. What I have done is create one
    argument in my CFC, with a type of "struct". Then, in the Flex
    Application, I create an Object (Associative Array), and pass this
    to the CFC as that one argument.
    Here is the ActionScript:
    // Create the variable to be passed to the WebService
    [Bindable]
    private var object:Object = new Object();
    Then in another function, you create the Object, based on
    specified values - perhaps from ComboBox selections:
    object.bookType = comboBox1.selectedItem["bookType"];
    object.author = comboBox2.selectedItem["author"];
    object.id = comboBox3.selectedItem["id"];
    Then you pass that one argument in your <mx:request>:
    <mx:WebService id="getBooks" wsdl"
    http://server.com/service.wsdl"
    showBusyCursor="true"
    fault="alert(event.fault.faultstring)">
    <mx:operation name="sBooks">
    <mx:request>
    <args>{object}</args>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    Your CFC might look like this:
    <cfcomponent>
    <cffunction method="sBooks">
    <cfargument name="args" type="struct">
    </cffunction>
    </cfcomponent>
    Then you can worry about validating the values passed to the
    CFC in the CFC function. That way, you could send an empty struct
    if you wanted, and the CFC would not throw an exception.
    Hope that helps.

  • Both of my kids have ipod touch 4.  On 1 we can edit the camera roll and delete muptiple pics at once.  On the other, we can't edit in camera roll and have to delete each picture one at a time?  How do we get edit as an option in camera roll?

    Both of my kids have ipod touch 4.  On 1 we can edit the camera roll and delete muptiple pics at once.  On the other, we can't edit in camera roll and have to delete each picture one at a time?  How do we get edit as an option in camera roll?

    Hi jenny,
    Are you certain that they are both running IOS 6.1.3? Go to Settings>General>About, and check the "Version".
    Cheers,
    GB

  • Can't log on with administrator user by finding the message "The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on.

    Hi,
    Now, my Windows 2008 R2 Enterprise server are running in the domain. It have problem about some one in my team have remote my server with the user administrator while I'm remote it now. It make my session loss. I tried to remote it again but I found
    the message at the log on screen about "The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on."
    Now, nobody can't remote with administrator user into this server. I have check the application log. I found the error message like this.
    ++++++++++++++++++++++++++++
    Source: Desktop Window Manager
    Event ID: 9003
    Detail: None The Desktop Window Manager was unable to start because a composited theme is not in use
    ++++++++++++++++++++++++++++
    Source: Microsoft-Windows-Winsrv
    Event ID:10002 
    Detail: The following application was terminated because it was hung: mmc.exe.
    ++++++++++++++++++++++++++++
    Source: Microsoft-Windows-Winsrv
    Event ID:10002 
    Detail: The following application was terminated because it was hung: javaw.exe.
    ++++++++++++++++++++++++++++
    Source: Microsoft-Windows-Winsrv
    Event ID:10002 
    Detail: The following application was terminated because it was hung: Explorer.exe.
    ++++++++++++++++++++++++++++
    Source:Desktop Window Manager
    Event ID:9009
    Detail:The Desktop Window Manager has exited with code (0x40010004)
     ++++++++++++++++++++++++++++
    Source:Microsoft-Windows-Winlogon
    Event ID:6005
    Detail:The winlogon notification subscriber <Sens> is taking long time to handle the notification event (Logoff).
    ++++++++++++++++++++++++++++
    In addition, I can log on this server with other user but I can't log off by it's showing the message "please wait for the system Event Notification service". Normally, the problem can solve by reboot the server. But how can be solve this problem
    by we do not reboot the server?

    Hi,
    The cause of unable to remote back to the server seems to be services hung, please try to reset session as the article below guides to see if it works:
    Windows Server: Remote Desktop Error: The task you are trying to do can't be completed because Remote Desktop Services is currently busy
    http://social.technet.microsoft.com/wiki/contents/articles/28636.windows-server-remote-desktop-error-the-task-you-are-trying-to-do-can-t-be-completed-because-remote-desktop-services-is-currently-busy.aspx
    If the issue can always be re-produced, then I would suggest you fully patch the system.
    More information for you:
    The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on
    https://social.technet.microsoft.com/Forums/windows/en-US/c58bfbd5-1d63-47e3-a489-6d8c8778b76b/the-task-you-are-trying-to-do-cant-be-completed-because-remote-desktop-services-is-currently-busy?forum=winserverTS
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • "Game Center account services are currently unavailable. Please try again later." Any solution for this thing ?

    Hey guys, I have an iMac 27 inch. Whenever i connect to the game center it asks me to input my apple id & password. I do so then I agree to terms & conditions followed by inputing my nickname. After doing this stuff it just shows as 'Saving...' and never stops for hours. When I try through chess i get the following error. "Game center account services are currently unavailable. Please try again later". I've tried everything which were there in other discussions but none helped. And just for the extra information my internet is firewalld frrom the datacenter itself. Please provide a solution. Thanks :)

    Apple has temp. disabled the Game Account services

  • I really need help. I try to contact support to no avail. There simply is no option on the site, You are always referred to a further topic which has notihing to do with my problem. I bougnt a full master pack CS6 which I had installed on a mac for one ye

    I really need help. I try to contact support to no avail. There simply is no option on the site, You are always referred to a further topic which has notihing to do with my problem. I bougnt a full master pack CS6 which I had installed on a mac for one year. Then, I decided to change it to another computer, so I sisintalled it according to instructions. In the meantime I got a free trial of creative cloud on that computer, but I gave up and decided to reinstall my cd-roms. However, everytime I try to use acrobat for instance it says that my trial period ran out! I disinstalled my cloud products, I am using my registered full master series items, they have nothing whatsoever to do with my creative cloud FREE subscription. If I try to cancel my free membership, it is to no avail, there simply is no such possiblity. I want to use the software I paid dearly for, not the cloud items I disinstalled and which do not interest me. How can I contact Adobe to fix it? It was no fault of mine, I did all I was supposed to, disintalling items before installing the right ones, but the system must have some error i am not responsible for.

    open an app and click help>activate.
    if you try to open an app and see a 'your trial has expired" window, click license this software and enter your serial number.
    if you can't do either, run the cleaner and make sure cc is cleaned from your computer, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Cannot open Photoshop Elements. Receive error message 400 (Photoshop services are currently unavailable. Please try again later (I have) or check your network connections (they are OK). Error 400.

    Cannot open Photoshop Elements. Receive error message 400 (Photoshop services are currently unavailable. Please try again later (I have) or check your network connections (they are OK). Error 400.

    Photoshop.com is no longer available. The service transferred to Revel.
    Ignore the sign-in altogether.
    You may need to turn off Sync in Organizer prefs if you have it activated.

  • What are the following:1)Cisco 1600 Series IOS WIRELESS LAN RECOVERY. 2)Service Provider Option 60 for Vendor Class Idenfier

    What are the following:1)Cisco 1600 Series IOS WIRELESS LAN RECOVERY. 2)Service Provider Option 60 for Vendor Class Idenfier
    These items are listed with 1600 series AP but I'm unable to understand what are these things & the use of them

    DHCP Option 60:  Go HERE.

  • No zoom option for camera

    I have an 8900 that was given to me by my sister-in-law. I read that I should be able to zoom in when taking a picture by selecting the menu key, then the zoom option. However, when I do this, the only options I have are help, now playing, view pictures, options, video camera, switch application, and close. Options just show the current settings. Anybody know what I can do?
    Thanks in advance!

    possible workaround for the caller id / contacts issue is to enter in two phone numbers for the people in your contacts, one used for calling them and one used for incoming caller id. Example: I have my phone number blocked at AT&T. Some people dont except blocked calls so I have to use *82 in front of the number to temp release it when i call them, but when they call me the caller id doesn't match their real number with the *82 number I have saved for them, so under each person in this situation I put two phone numbers, one with the *82 used for outgoing calls and one without used for incoming caller id.... you may be able to do something similar.

Maybe you are looking for

  • Why do I have to re add all songs/apps/movies/shows to Itunes??

    Itunes seems to lose all my songs/apps/movies/shows every once and a while and it all has to be re added?? HELP, why does it keep doing this??

  • BBM stopped working

    My wife has a Torch 9800. A few days ago she got a new SIM. Everything worked fine for a day, then her BBM stopped working. It wont send/receive. Every other BB service is working fine as are all other elements. I called the provider, they checked ev

  • Can't find my photo library

    Ok, I know this sounds silly - I just imported pictures to iPhoto, but wanted to edit and reference some of them using my Canon ImageBrowser - but I have no folder with my photos in it. It shows a pictures folder, but NO library, just Photo Booth If

  • Photoshop CC - 3D objects all appear blue. Windows 7

    On the left you see the result of making a 3d layer of the hat with a clean install of PhotoshopCC. On the right, exactly the same procedure in CS6. I'm looking forward to using the Generator features of PhotoshopCC, however this bug is a real showst

  • SMTP Authentication for PHP Mail

    Can anyone help me in figuring out the correct way to incorporate the SMTP authentication into a form? I am having a lot of trouble in getting my forms to send with this format. My code for my php action page is below. I have my correct information w