Ubuntu :: No Longer Launch An Email To A Contact From Gnome-do
Dec 2, 2010
I can no longer launch an email to a contact from gnome-do. I select a contact (using Gmail Contacts plugin) in the first pane, "Email" in the second pane, hit return and get nothing. I use Evolution as my email client because I like the tight integration with the gnome desktop. Previously, in Lucid 10.04 if I'm remembering correctly, this action in Gnome-Do would launch an Evolution email window with the To: field already populated. I'm running 32-bit 10.10 Maverick. Evidently there was a similar bug for Thunderbird that has been fixed. [URL] And something similar when using chrome as preferred email client: [URL]
View 4 Replies
ADVERTISEMENT
Feb 3, 2010
How do I add a emailed contact to evolution? I tried clicking on from but theres no option to add as a contact.
I'm trying really hard to use a desktop email client, but it seems that a Web is better
View 1 Replies
View Related
Nov 24, 2010
I am running Ubuntu 10.04LTS on a server. I am trying to make an e-mail contact form. When I hit submit, it says the message was sent. I check my e-mail and I don't see it. Does it not work with gmail? or do I need to use a system username@mydomain.net? This is the PHP mailer.
Code:
<?php
if(isset($_POST['submit'])) {
$to = "myemail@mydomain"; #This is set to my gmail.com e-mail.
$subject = "Unserv Form";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$body = "From: $name_field
E-Mail: $email_field
Message:
$message";
echo "Message was sent!";
mail($to, $subject, $body);
} else {
echo "Error, it did not work! Please mention this to admin@unserv.net!";
} ?>
This is a snip of HTML from the contact site:
Code:
<form method="POST" action="sndmsg.php">
Name: <input type="text" name="name" size="19"><br>
<br>
E-Mail: <input type="text" name="email" size="19"><br>
<br>
Message:<br><textarea rows="20" name="message" cols="50">
View 6 Replies
View Related
Feb 5, 2010
I get a lot of spam recently and I think is from my contact page... how do I encode my email address so that It won't be picked up by spam bots?
View 3 Replies
View Related
Feb 9, 2011
Ubuntu has been very good for us, fast, small foot print, But just yesterday it decided not to boot up. It gets to the login screen, and shows a warning... "Install problem, the Gnome power management configuration installed incorrectly, contact your administrator" What can I do to free this up?
View 1 Replies
View Related
Jul 1, 2011
After many failures, I succesfully compiled Gnome Shell from GIT. I already did about two months ago on the same machine and everything went ace. This time, when trying to finally launch it with ./gnome-shell --replace, the windows briefly disappear, the screen flashes for a few seconds but the Unity or the Classic Ubuntu desktop are restored normally. This is the output in the terminal:
Code:
giulio@giulio-902:~$ ~/gnome-shell/source/gnome-shell/src/gnome-shell --replace
Gtk-Message: Failed to load module "canberra-gtk-module"
Window manager warning: Log level 8: gtk_style_context_add_provider: assertion `GTK_IS_STYLE_PROVIDER (provider)' failed
[Code]....
View 2 Replies
View Related
Jun 25, 2010
I am trying to launch gnome-terminal on a specific workspace (4). I have tried the following :
gnome-terminal -t mytitle; wmctrl -r mytitle -t 3
but this just causes the terminal not to launch.
View 9 Replies
View Related
Sep 8, 2010
How to launch a graphical application using gnome-schedule ? I got some tutorials about cron after googling . But I couldn't understand the stuff about Screen number As an example, please tell what should be typed in "Task:" to launch say, nautilus
View 3 Replies
View Related
Jul 30, 2011
I'm using 11.04 with the old panels, no side panel. For some reason gnome-panel doesn't launch automatically so I have to do it via terminal, which means I have to keep the terminal tab open if I want to keep my panels.
Adding it to startup programs resulted in invisible panels (Cannot register the panel shell: there is already one running.), which I bypassed by typing gnome-panel --replace. I would like a permanent solution though..
View 5 Replies
View Related
Dec 30, 2010
Does anyone know of some things I can check to find the root cause behind this error? I pulled startupmanager via apt-get, and I get an error when I try to launch the startupmanager executable from a terminal in Gnome.
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-2.6.35-24-generic
Found initrd image: /boot/initrd.img-2.6.35-24-generic
[code]....
View 2 Replies
View Related
Jun 8, 2011
Noticed this last night, when I try and launch either Firefox or Thunderbird using the GNOME menu or the quick launch icons, it fails. I am able to launch them both from the command line in a terminal. Other applications seem to launch fine, so I'm at a bit of a loss where to begin taking this apart... I do get a task in the task bar that says "Launching Firefox", but then nothing comes up. The same thing happens with Thunderbird. That task just goes away. Another odd thing - following a reboot the launch buttons work once. If I close them, they won't launch again unless I run them from a terminal window.
View 3 Replies
View Related
Nov 3, 2010
I cannot launch gnome-terminal from the Applications -> System Tools -> Terminal menu. However a gnome-terminal process is created (I can see it in a terminal that I happened to have open) but it doesn't seem to actually run (I have several of these terminals in the ps list now but they haven't actually run as terminals and it's been at least 2 hrs). At first I thought they weren't running at all until I checked (it looked like the Starting Terminal message at the bottom of the gnome GUI ran abnormally long and then terminated so I thought at first that they weren't running at all).
Also it looks like my gnome session is clobbering the CPU: running at or over 80% of cpu time at times (it does change but mostly it is high). All I'm doing is minor web work + updating a file in Open Office - when I noticed this I got out of Open Office and that had no effect. So it looks like application software is running (this was launched from a terminal) but running from the menu seems to result in processes with low priority (that doesn't seem right though). This just started today and my system has been mostly running correctly for a year or so (last year I got an Acer 5532 on sale, wiped it and installed Fedora 11).
View 1 Replies
View Related
Jan 24, 2011
I work on a number of servers and do so many repetitive tasks that it's easier for me to make launchers on my desktop for these tasks. It's also necessary for opening windows in my secondary screen. I like to view the error logs as I work, so I have a screen session on my servers that 'tail -f /the/error.log' for easy viewing. I set up a launcher on my desktop that launches the following command:
Code: gnome-terminal --display :0.1 --geometry=156x33 -x ssh -t my-server 'screen -r' The command works perfectly. The window is created on the correct screen, with the correct size and information. The problem is gnome-terminal will exit/crash with no errors after a little while. This happens sometimes when I get up from my computer as well as while I am working on it.
I am saying that there are no errors because I have opened a terminal and ran the command in that terminal. When the new gnome-terminal closes, there are no errors or abnormal output on the generating gnome-terminal.
View 1 Replies
View Related
Feb 7, 2011
Fresh Squeeze install: I have AWN running and right now I have used gconf-editor to stop gnome-panel from being a part of the Gnome Sessions. I think it was in Desktop -> Sessions -> Default Settings..or something like that. Before I did this I was just clearing out the entries for the top panel, using Apps -> Panel -> and then it was top_panel or something like that. I'm at work so I cannot fully verify, after I deleted the bottom panel. This still allowed me to use ALT + F2 to bring up the run prompt.
Since removing gnome-panel from the session, I cannot use ALT + F2 anymore. If I were to put gnome-panel back, is there a way to keep the panels from recreating themselves after I remove them from within gconf-editor? If I leave gnome-session alone, whenever I reboot the top panel keeps coming back. I have everything I want running out of the AWN dock, so I want to remove the panels completely but still have the ability to launch the run prompt.
View 2 Replies
View Related
Dec 13, 2010
I use ctrl + shift + s to launch synaptic in KDE. That works wonderful and it is standardized on all my systems. I want to define the same in gnome, so that it does not matter if I'm in gnome or KDE.Where can I do this?Now before you start mentioning, I am familiar with keyboard launchers like launchy or gnome do (but have to admit that I don't know that much what gnome do does in all extents), so I am not looking for a program that launches an app after typing a few letters. I want exactly that keyboard combination, everything else will not do it.
I just mention that, because it happens all the time that I see in my posts that I ask:
How can I do B with Y? I don't want to use Z. (specifically asking the question) and then hear as an answer: you can do B with Z!And I am always tempted to answer: That is not what I asked, I asked something specific and got an answer that does not concern it.
View 6 Replies
View Related
May 12, 2010
I have a java program that needs to be launched with root privileges (from an account that doesn't have root privileges) from a desktop shortcut. The command would look something like this: java -jar /file/location/whatever.jar I've searched and searched and can't figure out how to do this. EDIT*** I would like it to pop up and ask for the root password before it launches the application.
View 3 Replies
View Related
Jan 21, 2011
since the last SuSE online update (last Wednesday?) the X server no longer starts on our notebook (ATI HD 4200) so we only have the consoles available, which limits the WAF heavily . We were using SuSE 11.3 with the Gnome desktop for about one months and it worked smoothly, but since the update (which included a kernel update to 2.6.34.7-0.7) the X server tries to start 5 times and then gives up. All logfiles end with:
Code:
...
[ 13.899] Segmentation fault at address 0x3c
[ 13.899]
Fatal server error:
[Code]....
I used the ati driver ati-fglrxG02-kmp-desktop, version 8.762_k2.6.34.0_12-31.1 from the ATI Suse repository. To solve the problem I already switched to the Xorg driver which lead to a color distorted display but no segmentation fault. But I'd like to get the ati driver running again.
View 9 Replies
View Related
Sep 28, 2010
All of a sudden I can no longer control the default size of my gnome terminal windows. The option is just gone from the preference window. If I look in gconf-editor my old values are still there but they are ignored.
View 7 Replies
View Related
Feb 14, 2011
I've installed Squeeze on my two machines and now I discover that the Gnome Time GUI no longer has the ability to control NTP. Did they move the NTP GUI somewhere else or did we go backwards on this one?
View 6 Replies
View Related
Feb 15, 2010
Gnome was working fine, then rebooted and it now loads a basic x windows GUI. What happened to Gnome loading and how do I get it back? It's not on the session manager menu
View 6 Replies
View Related
May 13, 2015
Updated old Eeepc 1005HAB to Jessie. Used to have a text file:
xrandr --output LVSD1 --mode 1024x600 --fb 1024x768 --panning 1024x768"
that I could run (twice in a row, it needed) to allow the scroling of the screen to see the bottom 1/4.
This no longer works.
View 0 Replies
View Related
Nov 1, 2010
I'm about to install Gnome on my ubuntu server box (that means, a headless server which I'm gonna access through vnc) I usually just run "apt-get install gnome" But it installs a bunch of stuff I'm not going to use (email, office, games, etc..). All I need is the most basic environment to allow me running programs and their GUIs (browsers, custom software etc), and access it with vnc How do I procced so I have the lightest gnome install possible? That's what I want to do, install gnome and access it through vnc. I'm aware of the number of other options I have.
View 2 Replies
View Related
Nov 14, 2009
I can no longer start cups with system-config-services (System->Administration->Services). I am prompted for the root password but it is not accepted. I can start cups in a terminal with
Code:
$ su
Password:
[code]....
View 2 Replies
View Related
Dec 8, 2009
For some unknown (to me) reason, "Ctrl+Shift+u, <unicode number>" doesn't work in F12. I had gotten quite used to this method in order to input several symbols and if you know what you want, it is a lot faster compared to using the character map. This was working in all recent Fedora versions.Does anyone know how to enable this functionality?
View 4 Replies
View Related
Apr 24, 2010
I use 'quoted' style for reply emails. I want to be able to intersperse my replies within a quoted reply i.e. if the email had three paragraphs, I'd like to be able to have my replies between each of the paragraphs. At the moment, I don't seem to be able to do anything other than delete from the quoted section - I try to simulate my requirements by cutting and then 'paste quotation', but this doesn't always work as sometimes Evolution adds too many levels of '> ' .
View 5 Replies
View Related
Feb 24, 2011
we had a server with Hostway, and it was running ubuntu. The server also had Plesk installed, which did some funny things. We had several websites on that server, and many email addresses. Then we changed servers. Now we have a server through Rackspace and it is also running Ubuntu. It also has Virtualmin installed, which generally does not impose as many unconventional changes on Ubuntu as Plesk did.
Rather than using Thunderbird to download my email (which is what I used to do) I've decided I'll start reading my email on the server. So I will ssh to the server and then use some email client, such as Alpine, to read the email. So I installed Alpine. I have an email account for "lawrence". The email address is lawrence @ krubner. Currently, when mail arrives for that account, it is stored here:
/home/krubner/homes/lawrence/Maildir/new
and then it is transferred to hear:
/home/krubner/homes/lawrence/Maildir/cur
When I start Alpine, while logged in as lawrence, Alpine automatically sets up an inbox for me here:
/home/lawrence/mail/
How do I get Alpine (or any other client) to read from the correct folder? I'm fairly sure the email package (the MTA) at work on this new server is Postfix. As near as I can tell, my email is held for 24 hours in this folder:
/home/krubner/homes/lawrence/Maildir/new
and then it gets transferred here:
/home/krubner/homes/lawrence/Maildir/cur
Alpine only lets me set one path for my Inbox, so I'm not sure what path I should set. If I use "cur" I will see all email 1 day late, but if I use "new" then I will miss email if I go a day without checking.
View 2 Replies
View Related
Jan 18, 2010
Is there a way to configure exim4 to bcc all new incoming emails to another email address? My boss wants a copy of all outgoing emails.
I know postfix can do this with a bcc_always option. Im sure exim4 should be able to also.
View 3 Replies
View Related
Feb 23, 2010
I'm attempting to send email with a PHP application I got from a textbook. Do I need to start an email server in order to get the application to work?Using SuSE 11.2
View 5 Replies
View Related
Jul 26, 2010
In my Windows environment, I use email client such as Microsoft Outlook to connect to our email server to send email with the following configuration:
Incoming server (POP3): 995 - (requires with SSL)
Outgoing server (SMTP): 465 - (use encrypted connection SSL)
[code]....
And the mail server requires user ID login and password.how do I setup a text command based email client in my Linux (Centos 5.1) to send out email through the existing email server above, which is in another machine? The email client has to be text command based because I need to use command line to send notification email from anothar application installed in my Linux (Centos 5.1) Since the email client will only be used to send email notification, I don't require setting up of an email server in my linux.
View 2 Replies
View Related
May 28, 2010
Using CentOS. I have a cron setup to run this command: Code: /var/test.sh | mail -s "Test Cron" mr182@somewhere.com The email is sent but the output of the script is not in the email body, it's just blank. I know there is some output because there are some echo statements in the script.I don't want to get an email for all cronjobs, just this one.
View 1 Replies
View Related