Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Ruixue Zhang 4 posts 24 karma points
    Sep 03, 2012 @ 06:10
    Ruixue Zhang
    0

    question of translation workflow

    Hi,

    I am a new comer of Umbraco. There is a website in English, and I am trying to send it to translator to translate it in Chinese, but I am not familiar with the workflow.

    I right click the website name in content, choose the "send to translation", then choose a translator, but the chosen translator can not receive a notification, both of us can not see any notification after we sigh in. This makes me confused.

    We also try to right click the website in content, and choose "notification" and make sure the "send to translation" item be choosed, but still can not receive notification. Can anyone help me? thanks a lot.

  • Mike Chambers 621 posts 1203 karma points c-trib
    Sep 03, 2012 @ 10:25
    Mike Chambers
    0

    do you have the underlying setttings for email all set?

    eg web.config - 

    <system.net>
        <mailSettings>
          <smtp>
            <network host="127.0.0.1" userName="username" password="password" />
          </smtp>
        </mailSettings>
      </system.net>

     and 

    /config/umbraco.settings

            <notifications>
                <!-- the email that should be used as from mail when umbraco sends a notification -->
                <email>[email protected]</email>
            </notifications>

     Both may need altering to allow email sending... the default assumes that you have a local smtp server on the same box as your umbraco install and that it can relay mail for the domain set as the from email.

     

    papercut is a goos way to test...[http://papercut.codeplex.com/]

    or you can alter the web.config to rather than send the email save a file to the local file system so you can narrow down what's going on.

    <system.net>
            <mailSettings>
                <smtp deliveryMethod="SpecifiedPickupDirectory>
                <specifiedPickupDirectory pickupDirectoryLocation="C:\TestMailMessages\" />
  • Ruixue Zhang 4 posts 24 karma points
    Sep 10, 2012 @ 08:37
    Ruixue Zhang
    0

    Hi Mike,

    I hope the translator receive a email when I click"send to translation", does that means <networkhost="127.0.0.1"userName="[email protected]"password="*******"/> I should set the username and password as my email username and password, and the host IP as my local IP?

    Is there anything else I should set except  <network host="127.0.0.1" userName="[email protected]"password="*******" />    in web.config and  <notifications> tag in umbracoSettings.config?

     

    thanks

     


  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies