Bug 72315 - Kopete (Jabber) says: Cannot send to offline user
Summary: Kopete (Jabber) says: Cannot send to offline user
Status: RESOLVED FIXED
Alias: None
Product: kopete
Classification: Applications
Component: Jabber Plugin (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Till Gerken
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-10 15:45 UTC by Dik Takken
Modified: 2004-02-12 05:23 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dik Takken 2004-01-10 15:45:45 UTC
Version:            (using KDE KDE 3.1.94)
Installed from:    Compiled From Sources
OS:          Linux

When you are not connected to Jabber, and you try to send a message to a Jabber contact, Kopete says:

User unreachable, try a protocol that supports sending offline messages.

This message is wrong, since I am using a protocol that supports offline sending. In stead, the message should read

You are not connected to Jabber, connect first.
Comment 1 Matt Rogers 2004-02-12 05:23:53 UTC
CVS commit by mattr: 

Fix bug 72315 (which is really a libkopete bug, and not a jabber bug)

Indicate that one of the reasons that you can't message a user is because
the account itself is not connected. 

Won't be in KDE until version 3.3

CCMAIL: 72315-done@bugs.kde.org


  M +2 -2      kopetemetacontact.cpp   1.200


--- kdenetwork/kopete/libkopete/kopetemetacontact.cpp  #1.199:1.200
@@ -269,5 +269,5 @@ KopeteContact *KopeteMetaContact::sendMe
         {
                 KMessageBox::queuedMessageBox( qApp->mainWidget(), KMessageBox::Sorry,
-                        i18n( "This user is not reachable at the moment. Please try a protocol that supports offline sending, or wait "
+                        i18n( "This user is not reachable at the moment. Please make sure you are connected and using a protocol that supports offline sending, or wait "
                         "until this user comes online." ), i18n( "User is Not Reachable" ) );
         }
@@ -287,5 +287,5 @@ KopeteContact *KopeteMetaContact::startC
         {
                 KMessageBox::queuedMessageBox( qApp->mainWidget(), KMessageBox::Sorry,
-                        i18n( "This user is not reachable at the moment. Please try a protocol that supports offline sending, or wait "
+                        i18n( "This user is not reachable at the moment. Please make sure you are connected and using a protocol that supports offline sending, or wait "
                         "until this user comes online." ), i18n( "User is Not Reachable" ) );
         }