View Single Post
Posts: 307 | Thanked: 1,460 times | Joined on May 2011 @ Switzerland
#43
If you get stuck, then typing '.schema accounts' or '.schema settings' will tell you what the fields are called, which may help

Originally Posted by RafaelVlmendes View Post
insert into accounts values (null, 'me@hotmail.com', 'msn', 1);
"me@hotmail.com" = my email? or i need write "me" ?
This is just the display name, which is displayed on the account screen beneath the protocol name.


Originally Posted by RafaelVlmendes View Post
insert into settings values(14, 20, 'tmc-uid', 's', 'manager/protocol/youraccount');
"youraccount" = my login msn? example blablabla@hotmail.com ?

insert into settings values(14,0,'username','s','me@hotmail.com');
insert into settings values(14,0,'password','s','mypassword');

"me@hotmail.com" = my email? or i need write "me" ?
"mypassword" = my real password?
All of these values are important to get right. The 14 should be changed to whatever your account id is, and the 20 is the service id. The 'tmc-uid' is the correct line from the output of 'mc-tool list'. Username and password are as you say.

The instructions contain the necessary steps to find these things.