SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Customizations > SageMC Custom Interface
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageMC Custom Interface This forum is for discussing the user-created SageMC custom interface for SageTV.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-05-2008, 06:39 PM
SageGk SageGk is offline
Sage Aficionado
 
Join Date: Mar 2008
Posts: 391
@email

How do I setup my email in SageMC? I can't find any options to input my settings?
Reply With Quote
  #2  
Old 04-05-2008, 07:12 PM
dflachbart dflachbart is offline
SageTVaholic
 
Join Date: Jan 2006
Location: Brookfield, CT
Posts: 2,743
Quote:
Originally Posted by SageGk View Post
How do I setup my email in SageMC? I can't find any options to input my settings?
Email is configured in the file mailaccounts.xml in your SageTV directory, and pretty self-explanatory. You have to restart the UI to pick up any changes.

Dirk
Reply With Quote
  #3  
Old 04-05-2008, 09:59 PM
SageGk SageGk is offline
Sage Aficionado
 
Join Date: Mar 2008
Posts: 391
I tried to configure it, but it doesn't seem to be working. Has anyone set it up successfully with gmail?
Reply With Quote
  #4  
Old 04-05-2008, 11:04 PM
dflachbart dflachbart is offline
SageTVaholic
 
Join Date: Jan 2006
Location: Brookfield, CT
Posts: 2,743
Quote:
Originally Posted by SageGk View Post
I tried to configure it, but it doesn't seem to be working. Has anyone set it up successfully with gmail?
I'm using it with gmail. Post your configuration file (blank out email address and password)...

Dirk
Reply With Quote
  #5  
Old 04-06-2008, 09:44 AM
SageGk SageGk is offline
Sage Aficionado
 
Join Date: Mar 2008
Posts: 391
<?xml version="1.0" encoding="UTF-8"?>

<java version="1.4.2_04" class="java.beans.XMLDecoder">

<object class="nl.cmkprojects.sage.mail.MailAccount">

<!-- for multiple user, optional -->
<!--
<void property="accountHolder">
<string>xxxxx</string>
</void>
-->

<!-- text you want to be shown as first line in each message header -->
<void property="xxxxx">
<string>xxxxxx@gmail.com</string>
</void>

<!-- pop3 host, e.g. pop.zonnet.nl -->
<void property="host">
<string>pop.gmail.com</string>
</void>

<void property="password">
<string>xxxxxxx</string>
</void>

<void property="username">
<string>xxxxxx@gmail.com</string>
</void>

<!-- Fetch only headers, does not mark the email on the server as 'read' -->
<!-- Optional, default is 'false' (fetch header and message body) -->
<!--
<void property="fetchHeadersOnly">
<boolean>true</boolean>
</void>
-->

<!-- optional protocol element to specify email protocol, one of pop3, pop3s, imap, imaps (pop3 is default) -->
<!--
<void property="protocol">
<string>pop3</string>
</void>
-->

<!-- optional port element to specify connection port if the default does not work -->
<!-- defaults ports:
protocol port
pop3 110
pop3s 995
imap 143
imaps 993
-->
<!--
<void property="port">
<string>995</string>
</void>
-->

</object>

</java>
Reply With Quote
  #6  
Old 04-08-2008, 08:53 AM
SageGk SageGk is offline
Sage Aficionado
 
Join Date: Mar 2008
Posts: 391
Anything look wrong?
Reply With Quote
  #7  
Old 04-08-2008, 10:25 AM
gplasky's Avatar
gplasky gplasky is offline
SageTVaholic
 
Join Date: Jul 2003
Location: Howell, MI
Posts: 9,203
For the user name drop the @gmail.com


Gerry
__________________
Big Gerr
_______
Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB.
Reply With Quote
  #8  
Old 04-08-2008, 10:39 AM
dflachbart dflachbart is offline
SageTVaholic
 
Join Date: Jan 2006
Location: Brookfield, CT
Posts: 2,743
And set the correct protocol for gmail:

Change

<!--
<void property="protocol">
<string>pop3</string>
</void>
-->

to

<void property="protocol">
<string>pop3s</string>
</void>


Dirk
Reply With Quote
  #9  
Old 04-16-2008, 12:10 AM
Andrew54 Andrew54 is offline
Sage User
 
Join Date: Apr 2008
Posts: 42
Has anyone been able to make @email to work with IMAP and Gmail?

I keep getting error that it is unable to connect.

Here is what it says in the errorlog file:
2008-04-15 22:42:25,127 ERROR [AWT-EventQueue-0] nl.cmkprojects.sage.mail.MailCheck (MailCheck.java:256) - failed
javax.mail.MessagingException: Connect failed;

Here is my config file:

<?xml version="1.0" encoding="UTF-8"?>

<java version="1.4.2_04" class="java.beans.XMLDecoder">

<object class="nl.cmkprojects.sage.mail.MailAccount">

<!-- for multiple user, optional -->
<!--
<void property="accountHolder">
<string>Andrew Martin</string>
</void>
-->

<!-- text you want to be shown as first line in each message header -->
<void property="displayName">
<string>xxxxxxx@gmail.com</string>
</void>

<!-- pop3 host, e.g. pop.zonnet.nl -->
<void property="host">
<string>imap.gmail.com</string>
</void>

<void property="password">
<string>xxxxxxx</string>
</void>

<void property="username">
<string>xxxxxxx@gmail.com</string>
</void>

<!-- Fetch only headers, does not mark the email on the server as 'read' -->
<!-- Optional, default is 'false' (fetch header and message body) -->
<!--
<void property="fetchHeadersOnly">
<boolean>true</boolean>
</void>
-->

<!-- optional protocol element to specify email protocol, one of pop3, pop3s, imap, imaps (pop3 is default) -->
<!--
<void property="protocol">
<string>imaps</string>
</void>
-->

<!-- optional port element to specify connection port if the default does not work -->
<!-- defaults ports:
protocol port
pop3 110
pop3s 995
imap 143
imaps 993
-->
<!--
<void property="port">
<string>993</string>
</void>
-->

</object>

</java>

Here is what Gmail says:

Incoming Mail (IMAP) Server - requires SSL: imap.gmail.com
Use SSL: Yes
Port: 993
Outgoing Mail (SMTP) Server - requires TLS: smtp.gmail.com (use authentication)
Use Authentication: Yes
Use STARTTLS: Yes (some clients call this SSL)
Port: 465 or 587
Account Name: your Gmail username (including @gmail.com)
Email Address: your full Gmail email address (username@gmail.com)
Password: your Gmail password

Thanks in advance,
Andrew

Last edited by Andrew54; 04-16-2008 at 12:29 AM.
Reply With Quote
  #10  
Old 04-16-2008, 06:06 AM
gplasky's Avatar
gplasky gplasky is offline
SageTVaholic
 
Join Date: Jul 2003
Location: Howell, MI
Posts: 9,203
I don't think this plugin will do a ssl connection.


Gerry
__________________
Big Gerr
_______
Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB.
Reply With Quote
  #11  
Old 04-16-2008, 07:58 AM
SageGk SageGk is offline
Sage Aficionado
 
Join Date: Mar 2008
Posts: 391
Yea, I can't seem to get working.
Reply With Quote
  #12  
Old 06-16-2008, 06:03 PM
Zippster's Avatar
Zippster Zippster is offline
Sage Aficionado
 
Join Date: Jun 2008
Location: Buffalo NY
Posts: 314
If I dont plan on using email, how can I remove this from the menu?
Reply With Quote
  #13  
Old 06-17-2008, 04:42 AM
gplasky's Avatar
gplasky gplasky is offline
SageTVaholic
 
Join Date: Jul 2003
Location: Howell, MI
Posts: 9,203
Quote:
Originally Posted by Zippster View Post
If I dont plan on using email, how can I remove this from the menu?
Right-click or hit the Options button on your remote. Main Menu Options-Edit Menu Item-Delete. After you delete go back to Main Menu Options-File-Save Menu File.

Gerry
__________________
Big Gerr
_______
Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB.
Reply With Quote
  #14  
Old 06-17-2008, 09:51 AM
Zippster's Avatar
Zippster Zippster is offline
Sage Aficionado
 
Join Date: Jun 2008
Location: Buffalo NY
Posts: 314
Worked like a charm, Thanks.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
STV: SageMC 16x9 Version 6.x (latest dev build) dflachbart SageMC Custom Interface 6112 04-04-2008 11:16 PM


All times are GMT -6. The time now is 02:51 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.