Solaris don't send message for domain on localmachine

Hi,
I have the following problem in my solaris box.
When I try send a message for any user in domain pointed to my server messages don't arrives. But if I try send for other server/location the messages are sent and user receive that.
Any help is appreciate.
I will use sendmail and all default configurations are in place. If any help or information please talk me.

I don't believe you understand.  Maybe I didn't describe the problem correctly.  If I go into my photos, select a photo then click on the icon to forward the picture... I then select "message" add a recipient, then click send.  The screen disappears as to indicate the picture was sent.  The recipient does not receive the picture.  If I then go into messages, it does not show the picture as a sent message...  It is not being sent.  It only will send a picture if I am already I'm the messaging app and either take a new picture, or select existing.  My daughter updated to 7.1 today on her 4S and does not have this problem.

Similar Messages

  • Remove Send-As for domain admin groups

    With referring to below link.
    http://social.technet.microsoft.com/Forums/exchange/en-US/d2e97e64-536a-4c46-8e57-e0ac6a4ad64e/how-do-i-remove-domain-admins-send-as-settings-for-all-users?forum=exchangesvradminlegacy
    The solution work perfectly for normal user but for user whose member of Domain Admin as well, the send-as will revert back from Deny to Allow after a while.
    I have a user who member of domain admins group, say User A. Since we want to remove the send as for all users (including User A), I did followed the steps, Denied Send-As for Domain Admins group for User A.
    However, after for while it return back to Allow.

    The permissions on members of special groups is managed by the AdminSDHolder and SDProp.
    http://technet.microsoft.com/en-us/magazine/2009.09.sdadminholder.aspx
    The way to deal with this is to give your domain admins (and any other admins) a separate account and to remove their "normal" account from any privileged groups (and to reset the adminCount property and "allow inheritance" on the "normal" account). Do NOT
    give the admins a mailbox.
    If you can't do that, then deny the Domain Admins group the "Send As" and "Receive As" permission at the organization level in the AD's configuration container. Use ADSIEDIT to do that here:
    CN=<Organization>,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=<domain>,DC=<tld>
    --- Rich Matheisen MCSE&I, Exchange MVP

  • My Iphone 4 at random times, just wont send messages for around an hour even if i have full service, its always up to date so its not that but any help on what this could be?

    My Iphone 4 at random times, just wont send messages for around an hour even if i have full service, its always up to date so its not that but any help on what this could be? It could just be my network being a pain in the *** but im not sure, help me out here people !

    never had that problem or heard about it so my bet is a network issue

  • Send message for all domain computers

    Hi, i am from Spain, excuse my bad English
    I have 1200 computers clients in my 2008 r2 domain
    I want send instant message to all power on computers in my domain
    How i can do it?
    Any Software?
    I want do it type multicast
    thanks in advantage

    This script developed by Chris Carter may come handy. It uses Powershell to send your message to domain computers.
    Message Center GUI using msg.exe
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or
    to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?
    If i'm not wrong you will be able to use the script mentioned provided the Windows Remote Management (WinRM) has been configured on the remote computer.
    check out this link for a simple way to send a message to a single client and try to experiment from there:
    Show Remote Notifications on client PCs
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • Can you help? -- Server don't sends messages.

    I have this program, a server to transmit text files (I mean: it's suppose to that, that doesen't means that it does it!), but when the server should send messages nothing happens!
    I cannot understand why, can you?
    Thanks.
    Here is the program:
    import java.io.*;
    import java.net.*;
    *Commands:
    *000-Do Nothing (File Transfer)
    *101<name>-Transfer file with that name
    *102<name>-Transfer array with that name
    *777-Error
    *999-exit
    *System File:
    *Adimistrator password
    *Max num of connections
    *Number of accounts
    *Accounts...
    public class DataTransferServer{
        public static server Server;
        public static PrintWriter log;
        private static void startlog(){
            try{
                log = new PrintWriter(new FileWriter("ServerLog.txt"));
                log.println(System.currentTimeMillis()+": "+"Log started.");
            }catch(Exception e){
                System.out.println("Could not start log");
        public static void sendDatabase(String path){
            try{
                TextReader input = new TextReader(new FileReader(path));
            }catch(Exception e){
        public static void SERVER(int port){
            //while(true){
            try{
                Server.makeserver(port);
                //log.println(System.currentTimeMillis()+": "+"Server connected.");
                controler Controler = new controler();
                //log.println(System.currentTimeMillis()+": "+"Going to start controler...");
                Controler.controler(Server.returnConnection());
                System.out.println("Connection accepted");
            }catch(Exception e){
                System.out.println("Error");
    class controler extends java.lang.Thread{
        private Socket socket;
        public static PrintWriter log;
        private static long startlog = System.currentTimeMillis();
        private static void startlog(){
            try{
                log = new PrintWriter(new FileWriter("ServerThreadLog.txt"));
                System.out.println(System.currentTimeMillis()-startlog+": "+"Log started.");
            }catch(Exception e){
                System.out.println("Could not start log");
        public void controler(Socket Socket){
            startlog();
            System.out.println(System.currentTimeMillis()-startlog+": "+"Log started.");
            socket = Socket;
            start();
        public void run(){
            try{
                log.println(System.currentTimeMillis()-startlog+": "+".");
                PrintWriter out = new PrintWriter(socket.getOutputStream());
                TextReader in = new TextReader(socket.getInputStream());
                boolean exit = false;
                int permission = 0;
                while(!exit){
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Sending greetings message.");
                    out.println("000Hello"); //At least here it should transmit anything!
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Getting command.");
                    String command = in.getln();
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Got command: "+command+".");
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Got Action: "+getAction(command)+".");
                    int ToDo = getAction(command);
                    switch(ToDo){
                        case 999:
                            System.out.println(System.currentTimeMillis()-startlog+": "+"In case 999.");
                            exit = true;
                            break;
                        case 102:
                            try{
                                System.out.println(System.currentTimeMillis()-startlog+": "+"In case 102.");
                                String[] args = getArgs(command);
                                System.out.println(System.currentTimeMillis()-startlog+": "+"Args1: "+args[0]);
                                TextReader incoming = new TextReader(new FileReader(args[0]));
                                int length = 0;
                                while(!incoming.eof()){
                                    incoming.getln();
                                    length++;
                                System.out.println(System.currentTimeMillis()-startlog+": "+"Lenght: "+length);
                                incoming = new TextReader(new FileReader(args[0]));
                                for(int count=0; count<=length-1; count++){
                                    String temp = incoming.getln();
                                    out.println("000"+temp);
                                    System.out.println("Send>000"+temp);
                                break;
                            }catch(Exception e){
                                System.out.println(System.currentTimeMillis()-startlog+": "+"102: Exception Occurred: "+e.toString());
            }catch(Exception e){
                System.out.println(System.currentTimeMillis()-startlog+": "+"Exception Occurred: "+e.toString());
            System.out.println(System.currentTimeMillis()-startlog+": "+"999: Exit.");
        private static String[] getArgs(String command){
            System.out.println(System.currentTimeMillis()-startlog+": "+"In getArgs.");
            command = command.substring(3, command.length());
            System.out.println(System.currentTimeMillis()-startlog+": "+"The command: "+command);
            String[] args = new String[0];
            int last = 0;
            System.out.println(System.currentTimeMillis()-startlog+": "+"Command length: "+command.length());
            boolean exit = false;
            int end = command.length();
            int count = 0;
            while(count<end){
                System.out.println(System.currentTimeMillis()-startlog+": "+"(count="+count+").");
                if(command.charAt(count)==',' || command.charAt(count)==';'){
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Found ',' or ';'.");
                    args = addColum(args);
                    args[args.length-1] = command.substring(last, count);
                    System.out.println(System.currentTimeMillis()-startlog+": "+"Found arg: "+args[args.length-1]);
                    last = count+1;
                count++;
            System.out.println(System.currentTimeMillis()-startlog+": "+"Returning args.");
            return args;
        private static String[] addColum(String[] oldArray){
            System.out.println(System.currentTimeMillis()-startlog+": "+"In addColum.");
            String[] newArray = new String[oldArray.length+1];
            for(int counta = 0; counta<=oldArray.length-1; counta++){
                newArray[counta] = oldArray[counta];
            return newArray;
        private static int getAction(String command){
            return Integer.parseInt(command.substring(0, 3));
    }The problem is not of the client (I hope!), because I tested it.
    Thanks for your help.

    OK, I got the anser:
    Sould be:
    PrintWriter out =new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);Instead of:
    PrintWriter out = new PrintWriter(socket.getOutputStream());

  • Why does iMessage take longer to send messages for certain conversations?

    iMessage can take around 15-20 minutes to send messages to certain conversations, but is extremely fast for others (I've noticed that it's generally faster for relatively newer conversations) off of my phone (iPhone 4S running iOS 8). iMessages for the same conversations send infinitely faster off of my macbook pro.
    It shouldn't be a wifi/data/network issue because messages sent for different conversations off of the same network take different times to send.

    I would delete the contact and then have the other person(s) send you a Mesage and then readd them as a contact.

  • Since update to 8.2, iphone 6  stuck sending message for days

    SSince I did the update the other day, randomly when sending text messages, the message will read "sending", but never complete or go through. I've had several that have been sending since Friday (it's Sunday now). I have reset the network settings, nothing. I have even erased all my messages, nothing.
    Again, it's random, so sometimes it goes with one name and then I delete and restart the phone and it goes through. Other times it's different contacts. can be text or photos, other times they go through. I'm on AT&T, and it does not matter the carrier it goes to either.
    WHen hen people send me text, they say it shows that I have received them, but I have not. That's not good with the wife as an excuse!
    What can can I do?

    I have the exact same issue! I kept turning my phone on and off and every time I restarted it, it would work for a while and then stop. It's been sending my messages well for the last day but all my apps are crashing.  I can't use any of them.

  • Don,t send messages with attached

    Mail, let me send normal messages, but when i send attached messages, makes time error. The attachment is 56 Kb. I also try with entourage and the same.
    In a pc with windows i can send this mail.
    Some idea?????
    Sorry about my english and thanks.

    Lolete,
    This behavior of sending without an attachment, but not with, could be explained by a mismatch in the way the Mac is sending, and the requirements of your particular ISP. You can test for this, by changing the maximum transmission unit (MTU) setting in your Ethernet settings -- see:
    http://docs.info.apple.com/article.html?artnum=303192
    Focus only on the portion of this article that is about an ethernet connection. I would suggest starting with a value of 1492, and then reducing by 100 for several steps.
    Do not hesitate to ask any questions you need answered to be comfortable in testing for changes in the value of MTU. Not every computer will send the same way, and the packet size used by your PC may have gotten tuned to your network, or simply not send in the same way.
    Ernie

  • ICloud sends messages for every change in someone else's calendar

    I am trying to use iCloud calendar services for collaboration with my wife, and my secretary (I actually even bought a mac for my wife so that we could do this).
    However every time either of them change anything in their respective calendars I get an e-mail from iCloud saying an event has been created. This only started about a week ago.
    I have checked to see if some of my settings in iCloud have changed, and they haven't (the box in iCloud that says: "E-mail me when this calendar changes" is not ticked).
    I am now totally confused about why I am suddenly getting all these e-mails which are quite irritating.

    This seems to be a known problem with no solution at present, I'd be inclined just to wait for a fix to be released.

  • Not Able to send messages using NOKIA TEXT MESSAGE...

    Hi,
    I am not able to send messages using text message editor. I am having N70. I also have the latest PC suite and latest phone software. Whenever I try to send message, a message appears "Unable to send". It does not even give me the reason. I have connected my phone using data cable and I can transfer music, syncronize and do other stuffs.
    Can someone suggest what needs to be done to send messages using PC??
    Thanks in advance.
    Raghu.

    Hello,
    i am having the same Problem.
    I cannot send any sms via my phone (N70) nor via the latest Pc Suite. It also just says "Unable to send" with no reason.
    I am on:
    V5.0705.3.0.1
    30-01-07
    PM-84
    Model: N70-1
    Code: 0530495
    Any help is much appreciated. :-)
    Kind regards,
    Thorsten
    Message Edited by deeplook on 01-Jul-2008 08:59 PM

  • See all room and send message

    hello, first sorry for my english.
    i' m developing a multyplayer games whith multi-rooms
    application.onAppStart = function(){
    application.player_so = SharedObject.get("player_so",
    false);
    application.nextId = 0;
    application.onConnect = function(newClient,name){
    application.nextId++
    newClient.id = application.nextId
    application.player_so.setPrope rty(newClient.name, name);
    application.acceptConnection(newClient);
    newClient.sendMessage = function(testo) { ;
    for(var c=0; c<application.clients.length;c++) { ; ;
    application.clients[c].call("sendMessage", null,"hello i'm:
    "+name);
    ok.. i have 10 rooms .. then the client
    var client_nc:NetConnection= new NetConnection();
    client_nc.connect("rtmp:/myapplication/room1","ciao");
    // i create 10 room
    client_nc.onStatus = function(info) {
    client_nc.sendMessage = function(msg) {
    dbg_txt.text +="Debug: "+ msg+"\n";
    dbg_txt.scroll += 1;
    dbg_txt.scroll = dbg_txt.maxscroll;
    mybutton.onRelease= function(){
    _root.client_nc.call("sendMessage", null,
    _root.testo_txt.text );
    how can i send a message for all client?
    if i send a message this message is received only clients of
    a determinate room, i want send message for client of all
    room

    As I said the problem is in delta pull mechanism. Talk to your Basis or EP guy and check the following link
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/eb/101fa0a53244deb955f6f91929e400/content.htm
    Regards, IA

  • Mail 5.3 I sent a message to a friend however, when viewing it I discovered several other past emails attached to it that I did not intend to send. I was wondering want I may of done wrong. Thanks for any replies.

    Mail 5.3 I sent a message to a friend however, when viewing it I discovered several other past emails attached to it that I did not intend to send. I was wondering want I may of done wrong. Thanks for any replies.

    I get several thousand emails a day and have no issues. Sounds like either the mail account in Mail is configured incorrectly or the Exchange Server (I'm assuming you meant Exchange Server and not Outlook Server) needs a software update or may have a setting that doesn't play well with other mail clients.

  • Exchange 2007 - The server don't send dsn message for external users

    Hello,
    Our exchange 2007doesn't send dsn message for external users but for internals it is ok, I check my configuration but all seems to be ok
    Have you any idea please?
    Thx

    Hi,
    To narrow down the cause, let's firstly try to check the following configuration:
    Get-TransportConfig |fl
    Get-RemoteDomain | select identity, NDREnabled
    Get-SystemMessage
    Thanks,
    Angela Shi
    TechNet Community Support

  • Modify Calendar item gives "You don't have the permissions requied to send messages from this mailbox" .

     Situation:
    -Customer has taken over an existing company.
    -New users where created in the domain.
    -Mail accounts where created and the .pst's imported.
    -Everything fine so far.
    Problem:
    When a user tries to edit a calendar item created in the past the message "You don't have the permission required to send messages from this mailbox" appears. After that the item is changed in the users calendar who edited the item but not in the
    other users calendar who where also invited.
    Everything works fine when a new calendar item is generated.
    Cannot find anything on this.
    Please help!!

    Hi,
    According to your description, I understand that you create a new mailbox for a user and imported Calendar items to this mailbox by using PST file.
    If that is the case, the calendar items which are imported should be created by other user. It is just imported in this mailbox. Please check whether the original mailbox which these calendar items created on is still existed in Exchange server or not. Then
    check the calendar items in the original mailbox.
    Additionally, if the original user is still existed in your AD or exchange server, please assign Send As permission for the new user to this mailbox to have a try.
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • Error message firefox has encounted a problem and will close send don't send

    error signature code 0xc000000d flags 0x00000000
    When I go to the web I get this error message: Firefox has encountered a problem and will close send or don't send .When you click either it closes

    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

Maybe you are looking for

  • Login to Adobe account fails for all web resources and has for a week.

    Somehow it let me post a reply to one of my posts in this forum, and I'm hoping it will allow me to post this new thread as for the rest....  I'm posting here because this is the first place it has let me post, and I'm trying to get FB4.7b to ACCEPT

  • How do I count the number of records returned in the CMIS query

    How do I count the number of records returned in the query CMIS? SELECT COUNT(*) FROM ora:t:IDC:GlobalProfile WHERE ora:p:xRegionDefinition = \'RD_PROJETOS_EXCLUSIVOS\''} Euler Homero

  • Call a procedure in a function to create an Index

    Hi, i want to doing a text search and have to create some index to doing that. I have to choose between create two index according to what a search i want to doing. The function, which call the sql-statement to search the text is: CREATE OR REPLACE F

  • Reporting on a Hierarchy

    I want to create a query on a hierachy and filter based on that Hierarchy. I want to include a specific node of that hierachy and then exclude a lower level node of the one I've just added. But I still want to include the lower level node I've just e

  • Saved Docs Not Showing up via iWork

    If I save a document from Pages on my iPad to "iCloud", it immediately turns up via iWork.com in Safari. If I try the same thing from Pages on my Mac it does NOT appear via iWork.com in Safari. My bookmarks and notes are syncing successfully between